/* /AppModal.razor.rz.scp.css */
.modal-backdrop[b-wslwkw9i2v] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.modal[b-wslwkw9i2v] {
    background: white;
    border-radius: 16px;
    padding: 1px;
    min-width: 320px;
    max-width: 500px;
}
/* /Components/Layout/LayoutScreen.razor.rz.scp.css */
.layout-screen[b-e4oww1xsv9] {
    height: 100vh;
    display: flex;
    flex-direction: column;
}
/* /Components/Layout/Navbar/Navbar.razor.rz.scp.css */
.navbar[b-axsrrqxhof] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 30px;
    background: linear-gradient(90deg,#2aa7b9,#2f86da);
    color: white;
}

.navbar-left[b-axsrrqxhof] {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
}

.logo[b-axsrrqxhof] {
    height: 36px;
    display: block;
}

.navbar-center[b-axsrrqxhof] {
    font-size: 18px;
    font-weight: 500;
}

.navbar-right[b-axsrrqxhof] {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* =========================
   TOGGLE
   ========================= */

.theme-toggle[b-axsrrqxhof] {
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* track */
.toggle-track[b-axsrrqxhof] {
    width: 56px;
    height: 28px;
    border-radius: 999px;
    position: relative;
    transition: background-color 0.3s ease;
    background-color: rgba(255, 255, 255, 0.2);
}

.toggle-track:hover[b-axsrrqxhof] {
    background-color: rgba(255, 255, 255, 0.3);
}

/* thumb */
.toggle-thumb[b-axsrrqxhof] {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    /* 🔥 LIGHT MODE */
    background-color: white;
    color: #eab308;
}

/* slide */
.toggle-track.active .toggle-thumb[b-axsrrqxhof] {
    transform: translateX(28px);
    /* 🔥 DARK MODE */
    background-color: white;
    color: #2563eb;
}

/* icon size */
.toggle-thumb[b-axsrrqxhof]  svg {
    width: 14px;
    height: 14px;
}
/* /Components/Layout/Navbar/NavbarIcon.razor.rz.scp.css */
.navbar-icon[b-ku8lw3gm1s] {
    position: relative; /* 🔥 dôležité */

    padding: 8px;
    border-radius: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(255,255,255,0.85);
}

    .navbar-icon:hover[b-ku8lw3gm1s] {
        background: rgba(255,255,255,0.2);
        color: white;
    }

.navbar-badge[b-ku8lw3gm1s] {
    position: absolute;
    top: 4px;
    right: 4px;
    transform: translate(50%, -50%);
    background: #ef4444;
    color: white;
    font-size: 9px;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 999px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px #2f86da;
}
/* /Components/Layout/Timetable/Timetable.razor.rz.scp.css */
.timetable-wrapper[b-otye8e7yzj] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px;
    flex: 1;
}
/* /Components/Layout/Timetable/TimetableGrid/TimetableGrid.razor.rz.scp.css */
/* ROOT */
.tt[b-8mff9rck22] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden; 
    border-radius: 16px;
    background: #f8fafc;
    position: relative;
    min-width: 800px;
    height: 100%; 
}

/* ========================= */
/* HEADER */
/* ========================= */

.tt-header[b-8mff9rck22] {
    display: grid;
    grid-template-columns: 80px repeat(14, 1fr);
    height: 44px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.tt-time[b-8mff9rck22] {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #475569;
    border-left: 1px solid #e2e8f0;
}

.tt-corner[b-8mff9rck22] {
    border-right: 1px solid #e2e8f0;
}

/* ========================= */
/* BODY */
/* ========================= */

.tt-body[b-8mff9rck22] {
    flex: 1; 
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    border-top: 1px solid #e2e8f0;
    position: relative;
}

.tt-day-row[b-8mff9rck22] {
    display: grid;
    grid-template-columns: 80px repeat(14, 1fr);
}

/* ========================= */
/* DAY COLUMN */
/* ========================= */

.tt-day[b-8mff9rck22] {
    padding: 10px;
    background: #f1f5f9;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    left: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tt-day-short[b-8mff9rck22] {
    font-weight: 600;
    color: #1e293b;
}

.tt-day-full[b-8mff9rck22] {
    font-size: 12px;
    color: #64748b;
}

/* ========================= */
/* CELLS */
/* ========================= */

.tt-cell[b-8mff9rck22] {
    border-bottom: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
}

    .tt-cell:hover[b-8mff9rck22] {
        background: rgba(59,130,246,0.04);
    }
/* /Components/Layout/Timetable/TimetableItem/TimetableItem.razor.rz.scp.css */
/* Predmety v rozvrhu */
.timetable-item[b-5djzijm75d] {
    position: absolute;
    box-sizing: border-box;
    border-radius: 8px;
    padding: 6px 8px;
    color: white;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 20;
}

.timetable-item:hover[b-5djzijm75d] {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
    z-index: 30;
}

.timetable-item-icon[b-5djzijm75d] {
    position: absolute;
    top: 6px;
    right: 8px;
    opacity: 0.8;
}

.timetable-item-content[b-5djzijm75d] {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.timetable-item-title[b-5djzijm75d] {
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.timetable-item-sub[b-5djzijm75d] {
    font-size: 11px;
    opacity: 0.9;
}

.timetable-item-meta[b-5djzijm75d] {
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0.9;
}
/* /Components/Layout/Timetable/TimetableNavbar/TimetableNavbar.razor.rz.scp.css */
/* ========================= */
/* NAVBAR CONTAINER */
/* ========================= */

.timetable-navbar[b-icoc2kcxoz] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f1f5f9;
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

/* LEFT */
.tn-left[b-icoc2kcxoz] {
    display: flex;
    gap: 18px;
    font-size: 14px;
}

.tn-semester[b-icoc2kcxoz] {
    font-weight: 500;
    color: #334155;
}

.tn-user[b-icoc2kcxoz] {
    color: #64748b;
}

/* RIGHT */
.tn-right[b-icoc2kcxoz] {
    display: flex;
    gap: 10px;
    align-items: center;
}
/* /Components/Layout/Timetable/TimetableNavbar/TimetableNavbarIcon.razor.rz.scp.css */
/* ========================= */
/* BUTTON */
/* ========================= */

.timetable-navbar-icon[b-tke9oncbz4] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px; /* 👈 pill shape */

    border: none;
    cursor: pointer;
    position: relative;
    font-size: 13px;
    font-weight: 500;
    color: white;
    transition: all 0.2s ease;
    background-size: 200% 200%;
}

    /* ========================= */
    /* HOVER */
    /* ========================= */

    .timetable-navbar-icon:hover[b-tke9oncbz4] {
        transform: translateY(-1px);
        filter: brightness(1.05);
    }

    .timetable-navbar-icon:active[b-tke9oncbz4] {
        transform: scale(0.97);
    }

/* ========================= */
/* ICON */
/* ========================= */

.timetable-navbar-icon-left[b-tke9oncbz4] {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================= */
/* TEXT */
/* ========================= */

.timetable-navbar-icon-text[b-tke9oncbz4] {
    white-space: nowrap;
}

/* ========================= */
/* BADGE */
/* ========================= */

.tn-badge[b-tke9oncbz4] {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
/* /Components/Login/LoginScreen.razor.rz.scp.css */
.login-container[b-sil8rvcdez] {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ececec;
    font-family: Arial, sans-serif;
}

.logo[b-sil8rvcdez] {
    margin-bottom: 30px;
}

    .logo img[b-sil8rvcdez] {
        height: 60px;
    }

.features-card[b-sil8rvcdez] {
    width: 650px;
    max-width: 90%;
    background: white;
    border-radius: 12px;
    padding: 35px 40px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    margin-bottom: 30px;
}

    .features-card ul[b-sil8rvcdez] {
        list-style: none;
        padding: 0;
    }

    .features-card li[b-sil8rvcdez] {
        font-size: 18px;
        margin: 18px 0;
        position: relative;
        padding-left: 30px;
    }

        .features-card li[b-sil8rvcdez]::before {
            content: "★";
            position: absolute;
            left: 0;
            color: #4fa6bb;
        }

.login-btn[b-sil8rvcdez] {
    background: #6fb7c6;
    border: none;
    padding: 14px 45px;
    font-size: 18px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}
/* /Components/Overlay/ModalLayout.razor.rz.scp.css */
/* container */
.modal-container[b-6yvxjfndaq] {
    width: 480px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--modal-bg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* header */
.modal-header[b-6yvxjfndaq] {
    position: relative;
    padding: 20px 24px;
    color: white;
}

/* header content wrapper */
.modal-header-inner[b-6yvxjfndaq] {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* close button */
.modal-close[b-6yvxjfndaq] {
    position: absolute;
    top: 14px;
    right: 16px;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
}

/* body */
.modal-body[b-6yvxjfndaq] {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
/* /Components/Overlay/Modals/DownloadModal.razor.rz.scp.css */
/* header spacing */
.modal-header-inner[b-twy5qwrsd4] {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* header icons */
.modal-header-inner .icon-box[b-twy5qwrsd4] {
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

[b-twy5qwrsd4] .nav-icon {
    width: 24px;
    height: 24px;
}

.modal-header-inner[b-twy5qwrsd4]  .nav-icon {
    color: white;
}

/* title */
.modal-title[b-twy5qwrsd4] {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

/* text */
.modal-text[b-twy5qwrsd4] {
    color: var(--text);
    font-size: 16px;
    margin: 0 0 8px 0;
}

/* list */
.format-list[b-twy5qwrsd4] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* card base */
.format-card[b-twy5qwrsd4] {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.format-card .icon-box[b-twy5qwrsd4] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* titles */
.format-title[b-twy5qwrsd4] {
    font-weight: 600;
}

.format-sub[b-twy5qwrsd4] {
    font-size: 14px;
    opacity: 0.8;
}

/* excel */
.excel[b-twy5qwrsd4] {
    border: 1px solid rgba(34,197,94,0.5);
    background: rgba(34,197,94,0.1);
    color: #22c55e;
}

    .excel:hover[b-twy5qwrsd4] {
        background: rgba(34,197,94,0.2);
    }

    .excel .icon-box[b-twy5qwrsd4] {
        background: rgba(34,197,94,0.2);
    }

/* pdf */
.pdf[b-twy5qwrsd4] {
    border: 1px solid rgba(239,68,68,0.5);
    background: rgba(239,68,68,0.1);
    color: #ef4444;
}

    .pdf:hover[b-twy5qwrsd4] {
        background: rgba(239,68,68,0.2);
    }

    .pdf .icon-box[b-twy5qwrsd4] {
        background: rgba(239,68,68,0.2);
    }

/* calendar */
.calendar[b-twy5qwrsd4] {
    border: 1px solid rgba(59,130,246,0.5);
    background: rgba(59,130,246,0.1);
    color: #3b82f6;
}

    .calendar:hover[b-twy5qwrsd4] {
        background: rgba(59,130,246,0.2);
    }

    .calendar .icon-box[b-twy5qwrsd4] {
        background: rgba(59,130,246,0.2);
    }
/* /Components/Overlay/Modals/LogoutModal.razor.rz.scp.css */
/* header spacing */
.modal-header-left[b-4zx3dmz2a5] {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* title */
.modal-title[b-4zx3dmz2a5] {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

/* text */
.modal-text[b-4zx3dmz2a5] {
    font-size: 16px;
    text-align: center;
    color: var(--text);
    margin: 0;
}

/* warning */
.warning-box[b-4zx3dmz2a5] {
    padding: 16px;
    border-radius: 12px;
    background: rgba(251,191,36,0.1);
    border: 1px solid rgba(251,191,36,0.3);
}

/* actions */
.actions[b-4zx3dmz2a5] {
    display: flex;
    justify-content: center;
}

/* buttons */
.btn[b-4zx3dmz2a5] {
    padding: 12px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn:hover[b-4zx3dmz2a5] {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

/* confirm */
.danger[b-4zx3dmz2a5] {
    background: linear-gradient(to right, #06b6d4, #3b82f6);
    color: white;
}

/* icon */
.icon-box[b-4zx3dmz2a5] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

[b-4zx3dmz2a5] .nav-icon {
    width: 24px;
    height: 24px;
    color: white;
}

/* /Components/Overlay/Modals/NotificationsModal.razor.rz.scp.css */
/* =========================
   LIST
   ========================= */
.notifications[b-ns6o6s48iu] {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* =========================
   CARD
   ========================= */
.notification-card[b-ns6o6s48iu] {
    display: flex;
    gap: 14px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid;
    transition: all 0.2s ease;
    position: relative;
}

    .notification-card:hover[b-ns6o6s48iu] {
        transform: translateY(-2px);
    }

    /* =========================
   TYPE COLORS (SOFT UI)
   ========================= */
    .notification-card.info[b-ns6o6s48iu] {
        background: rgba(59,130,246,0.10);
        border-color: rgba(59,130,246,0.35);
    }

    .notification-card.success[b-ns6o6s48iu] {
        background: rgba(34,197,94,0.10);
        border-color: rgba(34,197,94,0.35);
    }

    .notification-card.warning[b-ns6o6s48iu] {
        background: rgba(245,158,11,0.10);
        border-color: rgba(245,158,11,0.35);
    }

    .notification-card.error[b-ns6o6s48iu] {
        background: rgba(239,68,68,0.10);
        border-color: rgba(239,68,68,0.35);
    }

/* =========================
   ICON
   ========================= */
.notification-icon[b-ns6o6s48iu] {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* icon colors */
.notification-card.info .notification-icon[b-ns6o6s48iu] {
    background: rgba(59,130,246,0.20);
    color: #3b82f6;
}

.notification-card.success .notification-icon[b-ns6o6s48iu] {
    background: rgba(34,197,94,0.20);
    color: #22c55e;
}

.notification-card.warning .notification-icon[b-ns6o6s48iu] {
    background: rgba(245,158,11,0.20);
    color: #f59e0b;
}

.notification-card.error .notification-icon[b-ns6o6s48iu] {
    background: rgba(239,68,68,0.20);
    color: #ef4444;
}

/* svg inside icon */
.notification-icon svg[b-ns6o6s48iu] {
    width: 18px;
    height: 18px;
}

/* =========================
   CONTENT
   ========================= */
.notification-content[b-ns6o6s48iu] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

/* title */
.notification-title[b-ns6o6s48iu] {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

/* message */
.notification-message[b-ns6o6s48iu] {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
    word-break: normal;
    overflow-wrap: break-word;
}

/* time */
.notification-time[b-ns6o6s48iu] {
    font-size: 12px;
    opacity: 0.6;
    margin-top: 8px;
}

/* =========================
   CLOSE BUTTON
   ========================= */
.notification-close[b-ns6o6s48iu] {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    opacity: 0.5;
    font-size: 14px;
}

    .notification-close:hover[b-ns6o6s48iu] {
        opacity: 1;
    }

/* =========================
   EMPTY STATE
   ========================= */
.empty-state[b-ns6o6s48iu] {
    text-align: center;
    padding: 60px 20px;
    opacity: 0.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

    .empty-state svg[b-ns6o6s48iu] {
        width: 40px;
        height: 40px;
        opacity: 0.5;
    }

/* =========================
   HEADER ICON BOX
   ========================= */
.icon-box[b-ns6o6s48iu] {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
}

    .icon-box svg[b-ns6o6s48iu] {
        width: 18px;
        height: 18px;
    }

/* =========================
   MODAL TITLE
   ========================= */
.modal-title[b-ns6o6s48iu] {
    font-size: 16px;
    font-weight: 600;
}
