/* /Components/DatePicker.razor.rz.scp.css */
/* === DatePicker === */
.date-picker-wrapper[b-aiso5356r7] {
    position: relative;
}

.date-picker-input[b-aiso5356r7] {
    cursor: pointer !important;
    background-color: #fff !important;
    caret-color: transparent;
}

.date-picker-backdrop[b-aiso5356r7] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1050;
}

.date-picker-popup[b-aiso5356r7] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 1060;
    background: #fff;
    border: 2px solid #e0e0ea;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 12px;
    min-width: 280px;
    animation: datePickerFadeIn-b-aiso5356r7 0.15s ease-out;
}

@keyframes datePickerFadeIn-b-aiso5356r7 {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === Шапка === */
.date-picker-header[b-aiso5356r7] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.date-picker-nav[b-aiso5356r7] {
    background: #f0f0f5;
    border: none;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    color: #333;
}

.date-picker-nav:hover[b-aiso5356r7] {
    background: #e0e0ea;
}

.date-picker-title[b-aiso5356r7] {
    background: none;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1a2e;
    cursor: pointer;
    text-transform: capitalize;
    padding: 4px 12px;
    border-radius: 8px;
    transition: all 0.2s;
}

.date-picker-title:hover[b-aiso5356r7] {
    background: #f0edff;
    color: #6c5ce7;
}

.date-picker-year[b-aiso5356r7] {
    font-weight: 700;
    font-size: 1.05rem;
    color: #1a1a2e;
}

/* === Сетка дней === */
.date-picker-grid[b-aiso5356r7] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.date-picker-dow[b-aiso5356r7] {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    padding: 4px 0;
}

.date-picker-dow.sun[b-aiso5356r7] {
    color: #d63031;
}

.date-picker-day[b-aiso5356r7] {
    background: #fff;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 6px 0;
    font-size: 0.85rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.15s;
    color: #333;
}

.date-picker-day:hover[b-aiso5356r7] {
    background: #e8e6f7;
    border-color: #6c5ce7;
}

.date-picker-day.other-month[b-aiso5356r7] {
    color: #ccc;
}

.date-picker-day.other-month:hover[b-aiso5356r7] {
    color: #6c5ce7;
}

.date-picker-day.today[b-aiso5356r7] {
    border-color: #6c5ce7;
    color: #6c5ce7;
    font-weight: 700;
}

.date-picker-day.selected[b-aiso5356r7] {
    background: #6c5ce7;
    color: #fff;
    font-weight: 600;
    border-color: #6c5ce7;
}

.date-picker-day.sun[b-aiso5356r7] {
    color: #d63031;
}

.date-picker-day.sun.other-month[b-aiso5356r7] {
    color: #f0b0b0;
}

.date-picker-day.sun.selected[b-aiso5356r7] {
    color: #fff;
}

/* === Сетка месяцев === */
.date-picker-month-grid[b-aiso5356r7] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.date-picker-month-cell[b-aiso5356r7] {
    background: #f8f8fc;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 8px 4px;
    font-size: 0.85rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.15s;
    color: #333;
}

.date-picker-month-cell:hover[b-aiso5356r7] {
    background: #e8e6f7;
    border-color: #6c5ce7;
}

.date-picker-month-cell.selected[b-aiso5356r7] {
    background: #6c5ce7;
    color: #fff;
    font-weight: 600;
}

.date-picker-month-cell.current:not(.selected)[b-aiso5356r7] {
    border-color: #6c5ce7;
    color: #6c5ce7;
    font-weight: 600;
}

/* === Адаптивность === */
@media (max-width: 768px) {
    .date-picker-popup[b-aiso5356r7] {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 300px;
        max-width: 90vw;
    }

    @keyframes datePickerFadeIn-b-aiso5356r7 {
        from { opacity: 0; transform: translate(-50%, -50%) scale(0.95); }
        to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    }
}
/* /Components/DayOfWeekPicker.razor.rz.scp.css */
/* === DayOfWeekPicker === */
.dow-picker-wrapper[b-rviskuup4g] {
    position: relative;
}

.dow-picker-input[b-rviskuup4g] {
    cursor: pointer !important;
    background-color: #fff !important;
    caret-color: transparent;
}

.dow-picker-backdrop[b-rviskuup4g] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1050;
}

.dow-picker-popup[b-rviskuup4g] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 1060;
    background: #fff;
    border: 2px solid #e0e0ea;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 12px;
    min-width: 200px;
    animation: dowPickerFadeIn-b-rviskuup4g 0.15s ease-out;
}

@keyframes dowPickerFadeIn-b-rviskuup4g {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.dow-picker-header[b-rviskuup4g] {
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.dow-picker-cells[b-rviskuup4g] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dow-picker-cell[b-rviskuup4g] {
    background: #f8f8fc;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.85rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.15s;
    color: #333;
}

.dow-picker-cell:hover[b-rviskuup4g] {
    background: #e8e6f7;
    border-color: #6c5ce7;
}

.dow-picker-cell.selected[b-rviskuup4g] {
    background: #6c5ce7;
    color: #fff;
    font-weight: 600;
    border-color: #6c5ce7;
}

.dow-picker-footer[b-rviskuup4g] {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.dow-picker-ok[b-rviskuup4g] {
    min-width: 80px;
    background: #6c5ce7;
    border-color: #6c5ce7;
    border-radius: 8px;
    font-weight: 600;
}

.dow-picker-ok:hover[b-rviskuup4g] {
    background: #5a4bd1;
    border-color: #5a4bd1;
}


/* /Components/DropdownPicker.razor.rz.scp.css */
/* === DropdownPicker === */
.dropdown-picker-wrapper[b-eoac8mviw7] {
    position: relative;
}

.dropdown-picker-toggle[b-eoac8mviw7] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #fff;
    text-align: left;
    padding: 10px 12px;
    border: 2px solid #e0e0ea;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #333;
    transition: border-color 0.2s;
}

.dropdown-picker-toggle:focus[b-eoac8mviw7] {
    outline: none;
    border-color: #6c5ce7;
}

.dropdown-picker-toggle.disabled[b-eoac8mviw7] {
    background: #f0f0f5;
    color: #888;
    cursor: default;
}

.dropdown-picker-text[b-eoac8mviw7] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

.dropdown-picker-arrow[b-eoac8mviw7] {
    font-size: 0.7rem;
    color: #999;
    margin-left: 8px;
    flex-shrink: 0;
}

.dropdown-picker-backdrop[b-eoac8mviw7] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1050;
}

.dropdown-picker-popup[b-eoac8mviw7] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 1060;
    background: #fff;
    border: 2px solid #e0e0ea;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 6px;
    max-height: 260px;
    overflow-y: auto;
    animation: dropdownPickerFadeIn-b-eoac8mviw7 0.15s ease-out;
}

@keyframes dropdownPickerFadeIn-b-eoac8mviw7 {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === Поиск === */
.dropdown-picker-search[b-eoac8mviw7] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    margin-bottom: 4px;
    border-bottom: 1px solid #f0f0f5;
}

.dropdown-picker-search-icon[b-eoac8mviw7] {
    color: #999;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.dropdown-picker-search-input[b-eoac8mviw7] {
    border: none;
    outline: none;
    font-size: 0.85rem;
    color: #333;
    width: 100%;
    background: transparent;
}

.dropdown-picker-search-input[b-eoac8mviw7]::placeholder {
    color: #bbb;
}

.dropdown-picker-item[b-eoac8mviw7] {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #333;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-picker-item:hover[b-eoac8mviw7] {
    background: #e8e6f7;
    color: #6c5ce7;
}

.dropdown-picker-item.selected[b-eoac8mviw7] {
    background: #6c5ce7;
    color: #fff;
    font-weight: 600;
}

/* === Checkbox items (Multiple) === */
.dropdown-picker-check-item[b-eoac8mviw7] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #333;
    cursor: pointer;
    transition: all 0.15s;
    margin: 0;
}

.dropdown-picker-check-item:hover[b-eoac8mviw7] {
    background: #e8e6f7;
    color: #6c5ce7;
}

.dropdown-picker-check-item.checked[b-eoac8mviw7] {
    background: #f0edff;
    color: #6c5ce7;
    font-weight: 600;
}

.dropdown-picker-check-item input[type="checkbox"][b-eoac8mviw7] {
    accent-color: #6c5ce7;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    cursor: pointer;
}

/* === Адаптивность === */
@media (max-width: 768px) {
    .dropdown-picker-popup[b-eoac8mviw7] {
        max-height: 220px;
    }
}
/* /Components/DurationPicker.razor.rz.scp.css */
/* === DurationPicker === */
.duration-picker-wrapper[b-7c7jjvxvie] {
    position: relative;
}

.duration-picker-input[b-7c7jjvxvie] {
    cursor: pointer !important;
    background-color: #fff !important;
    caret-color: transparent;
}

.duration-picker-backdrop[b-7c7jjvxvie] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1050;
}

.duration-picker-popup[b-7c7jjvxvie] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 1060;
    background: #fff;
    border: 2px solid #e0e0ea;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 12px;
    min-width: 240px;
    animation: durationPickerFadeIn-b-7c7jjvxvie 0.15s ease-out;
}

@keyframes durationPickerFadeIn-b-7c7jjvxvie {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.duration-picker-header[b-7c7jjvxvie] {
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.duration-picker-cells[b-7c7jjvxvie] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
}

.duration-picker-cell[b-7c7jjvxvie] {
    background: #f8f8fc;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 8px 2px;
    font-size: 0.85rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.15s;
    color: #333;
    line-height: 1.2;
}

.duration-picker-cell:hover[b-7c7jjvxvie] {
    background: #e8e6f7;
    border-color: #6c5ce7;
}

.duration-picker-cell.selected[b-7c7jjvxvie] {
    background: #6c5ce7;
    color: #fff;
    font-weight: 600;
    border-color: #6c5ce7;
}

.duration-picker-footer[b-7c7jjvxvie] {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.duration-picker-ok[b-7c7jjvxvie] {
    min-width: 80px;
    background: #6c5ce7;
    border-color: #6c5ce7;
    border-radius: 8px;
    font-weight: 600;
}

.duration-picker-ok:hover[b-7c7jjvxvie] {
    background: #5a4bd1;
    border-color: #5a4bd1;
}


/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-0l2001a3xn] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-0l2001a3xn] {
    flex: 1;
}

.top-row[b-0l2001a3xn] {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    border-bottom: none;
    height: 3.5rem;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.app-title[b-0l2001a3xn] {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-right: auto;
}

.nav-links[b-0l2001a3xn] {
    display: flex;
    gap: 4px;
}

[b-0l2001a3xn] .nav-link-top {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s;
}

[b-0l2001a3xn] .nav-link-top:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    text-decoration: none;
}

[b-0l2001a3xn] .nav-link-top.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

.nav-user[b-0l2001a3xn] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.burger-btn[b-0l2001a3xn] {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}

/* Mobile menu */
.mobile-menu[b-0l2001a3xn] {
    display: none;
    flex-direction: column;
    background: #5a4bd1;
    padding: 8px 0;
}

[b-0l2001a3xn] .mobile-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.2s;
}

[b-0l2001a3xn] .mobile-link:hover,
[b-0l2001a3xn] .mobile-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
}

article[b-0l2001a3xn] {
    padding-top: 0.5rem !important;
}

/* === Mobile === */
@media (max-width: 768px) {
    .nav-links[b-0l2001a3xn] {
        display: none;
    }

    .burger-btn[b-0l2001a3xn] {
        display: block;
    }

    .mobile-menu[b-0l2001a3xn] {
        display: flex;
    }

    .top-row[b-0l2001a3xn] {
        padding: 0 16px;
    }

    .app-title[b-0l2001a3xn] {
        font-size: 0.95rem;
    }

    article[b-0l2001a3xn] {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
}

#blazor-error-ui[b-0l2001a3xn] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-0l2001a3xn] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-9reoo3f4b2],
.components-reconnect-repeated-attempt-visible[b-9reoo3f4b2],
.components-reconnect-failed-visible[b-9reoo3f4b2],
.components-pause-visible[b-9reoo3f4b2],
.components-resume-failed-visible[b-9reoo3f4b2],
.components-rejoining-animation[b-9reoo3f4b2] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-9reoo3f4b2],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-9reoo3f4b2],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-9reoo3f4b2],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-9reoo3f4b2],
#components-reconnect-modal.components-reconnect-retrying[b-9reoo3f4b2],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-9reoo3f4b2],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-9reoo3f4b2],
#components-reconnect-modal.components-reconnect-failed[b-9reoo3f4b2],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-9reoo3f4b2] {
    display: block;
}


#components-reconnect-modal[b-9reoo3f4b2] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-9reoo3f4b2 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-9reoo3f4b2 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-9reoo3f4b2 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-9reoo3f4b2]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-9reoo3f4b2 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-9reoo3f4b2 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-9reoo3f4b2 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-9reoo3f4b2 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-9reoo3f4b2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-9reoo3f4b2] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-9reoo3f4b2] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-9reoo3f4b2] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-9reoo3f4b2] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-9reoo3f4b2] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-9reoo3f4b2] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-9reoo3f4b2 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-9reoo3f4b2] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-9reoo3f4b2 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/ModalWindow.razor.rz.scp.css */
/* === ModalWindow === */
.mw-backdrop[b-gxc1e4h5mh] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(2px);
    overflow-y: auto;
    padding: 40px 0;
}

.mw-container[b-gxc1e4h5mh] {
    width: 100%;
    flex-shrink: 0;
}

.mw-sm[b-gxc1e4h5mh] { max-width: 380px; }
.mw-md[b-gxc1e4h5mh] { max-width: 460px; }
.mw-lg[b-gxc1e4h5mh] { max-width: 600px; }

.mw-content[b-gxc1e4h5mh] {
    background: #fff;
    width: 100%;
    overflow: visible;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: mwIn-b-gxc1e4h5mh 0.2s ease-out;
}

@keyframes mwIn-b-gxc1e4h5mh {
    from { opacity: 0; transform: scale(0.95) translateY(-10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.mw-header[b-gxc1e4h5mh] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px 0;
}

.mw-title[b-gxc1e4h5mh] {
    margin: 0;
    font-size: 1.15rem;
    color: #1a1a2e;
}

.mw-close[b-gxc1e4h5mh] {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.mw-close:hover[b-gxc1e4h5mh] {
    color: #333;
}

.mw-body[b-gxc1e4h5mh] {
    padding: 20px 28px 28px;
}

/* === Responsive === */
@media (max-width: 768px) {
    .mw-container[b-gxc1e4h5mh] {
        margin: 8px;
        max-width: 100%;
    }

    .mw-body[b-gxc1e4h5mh] {
        padding: 16px;
    }

    .mw-header[b-gxc1e4h5mh] {
        padding: 16px 16px 0;
    }
}
/* /Components/Pages/Children.razor.rz.scp.css */
.families-container[b-5cca5z8a21] {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.families-container h2[b-5cca5z8a21] {
    color: #1a1a2e;
    margin-bottom: 16px;
}

/* === Search === */
.search-box[b-5cca5z8a21] {
    position: relative;
    margin-bottom: 16px;
}

.search-icon[b-5cca5z8a21] {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 0.9rem;
}

.search-input[b-5cca5z8a21] {
    width: 100%;
    padding: 10px 40px 10px 38px;
    border: 2px solid #e0e0ea;
    border-radius: 8px;
    font-size: 0.95rem;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.search-input:focus[b-5cca5z8a21] {
    outline: none;
    border-color: #6c5ce7;
}

.search-clear[b-5cca5z8a21] {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 4px;
}

.search-clear:hover[b-5cca5z8a21] {
    color: #333;
}

/* === Add parent form === */
.add-parent-form[b-5cca5z8a21] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.add-parent-form h4[b-5cca5z8a21] {
    margin: 0 0 4px;
    font-size: 1rem;
    color: #1a1a2e;
}

.phone-field[b-5cca5z8a21],
.email-field[b-5cca5z8a21] {
    flex: 1;
}

.phone-field label[b-5cca5z8a21],
.email-field label[b-5cca5z8a21],
.form-group label[b-5cca5z8a21] {
    display: block;
    margin-bottom: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
}

.form-group[b-5cca5z8a21] {
    margin-bottom: 0;
}

.form-input[b-5cca5z8a21] {
    flex: 1;
    padding: 10px 14px;
    border: 2px solid #e0e0ea;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    box-sizing: border-box;
    width: 100%;
}

.form-input:focus[b-5cca5z8a21] {
    outline: none;
    border-color: #6c5ce7;
}

.btn-add[b-5cca5z8a21] {
    background: #6c5ce7;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-add:hover:not(:disabled)[b-5cca5z8a21] {
    background: #5a4bd1;
}

.btn-add:disabled[b-5cca5z8a21] {
    opacity: 0.5;
    cursor: not-allowed;
}

.validation-error[b-5cca5z8a21] {
    color: #e74c3c;
    background: #ffeaea;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
}

.empty-text[b-5cca5z8a21] {
    color: #999;
    text-align: center;
    padding: 40px 20px;
    font-size: 0.95rem;
}

/* === Parents list === */
.parents-list[b-5cca5z8a21] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* === Responsive === */
@media (max-width: 640px) {
    .families-container[b-5cca5z8a21] {
        padding: 10px;
    }
}
/* /Components/Pages/Courses.razor.rz.scp.css */
.courses-container[b-4kqtn5sn3x] {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
}

.courses-container h2[b-4kqtn5sn3x] {
    color: #1a1a2e;
    margin-bottom: 20px;
}

.add-course-form[b-4kqtn5sn3x] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.form-group[b-4kqtn5sn3x] {
    margin-bottom: 0;
}

.form-group label[b-4kqtn5sn3x] {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
}

.form-input[b-4kqtn5sn3x] {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e0e0ea;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-input:focus[b-4kqtn5sn3x] {
    outline: none;
    border-color: #6c5ce7;
}

.hint-text[b-4kqtn5sn3x] {
    color: #999;
    font-size: 0.85rem;
    font-style: italic;
}

.btn-add-course[b-4kqtn5sn3x] {
    background: #6c5ce7;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-add-course:hover:not(:disabled)[b-4kqtn5sn3x] {
    background: #5a4bd1;
}

.btn-add-course:disabled[b-4kqtn5sn3x] {
    opacity: 0.5;
    cursor: not-allowed;
}

.validation-error[b-4kqtn5sn3x] {
    color: #e74c3c;
    background: #ffeaea;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
}

.empty-text[b-4kqtn5sn3x] {
    color: #999;
    text-align: center;
    padding: 40px 20px;
    font-size: 0.95rem;
}

.courses-list[b-4kqtn5sn3x] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (max-width: 640px) {
    .courses-container[b-4kqtn5sn3x] {
        padding: 10px;
    }
}
/* /Components/Pages/Finances.razor.rz.scp.css */
.finances-container[b-n9bphxltp1] {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.finances-container h2[b-n9bphxltp1] {
    color: #1a1a2e;
    margin-bottom: 16px;
}

/* === Search === */
.search-box[b-n9bphxltp1] {
    position: relative;
    margin-bottom: 16px;
}

.search-icon[b-n9bphxltp1] {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 0.9rem;
}

.search-input[b-n9bphxltp1] {
    width: 100%;
    padding: 10px 40px 10px 38px;
    border: 2px solid #e0e0ea;
    border-radius: 8px;
    font-size: 0.95rem;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.search-input:focus[b-n9bphxltp1] {
    outline: none;
    border-color: #6c5ce7;
}

.search-clear[b-n9bphxltp1] {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 0.8rem;
}

.search-clear:hover[b-n9bphxltp1] {
    color: #333;
}

.empty-text[b-n9bphxltp1] {
    color: #999;
    text-align: center;
    padding: 40px 20px;
    font-size: 0.95rem;
}

/* === Children list (wrapper) === */
.children-list[b-n9bphxltp1] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* === Responsive === */
@media (max-width: 768px) {
    .finances-container[b-n9bphxltp1] { padding: 10px; }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* === Calendar Container === */
.calendar-container[b-6ds49elnul] {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* === Header === */
.calendar-header[b-6ds49elnul] {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.calendar-header h2[b-6ds49elnul] {
    min-width: 220px;
    text-align: center;
    text-transform: capitalize;
    margin: 0;
    font-size: 1.5rem;
    color: #1a1a2e;
}

.btn-nav[b-6ds49elnul] {
    background: #f0f0f5;
    border: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.btn-nav:hover[b-6ds49elnul] {
    background: #e0e0ea;
}

.btn-today[b-6ds49elnul] {
    margin-left: auto;
    background: #6c5ce7;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-today:hover[b-6ds49elnul] {
    background: #5a4bd1;
}

/* === Month Picker === */
.month-picker-wrapper[b-6ds49elnul] {
    position: relative;
}

.month-picker-toggle[b-6ds49elnul] {
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.month-picker-toggle:hover[b-6ds49elnul] {
    color: #6c5ce7;
}

.month-picker-caret[b-6ds49elnul] {
    font-size: 0.7rem;
    opacity: 0.5;
    transition: transform 0.2s;
}

.month-picker-dropdown[b-6ds49elnul] {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 2px solid #e0e0ea;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 12px;
    z-index: 1000;
    min-width: 260px;
    animation: monthPickerFadeIn-b-6ds49elnul 0.15s ease-out;
}

@keyframes monthPickerFadeIn-b-6ds49elnul {
    from { opacity: 0; transform: translateX(-50%) translateY(-4px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.month-picker-year-row[b-6ds49elnul] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 0 4px;
}

.month-picker-year[b-6ds49elnul] {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a2e;
}

.btn-nav-sm[b-6ds49elnul] {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
}

.month-picker-grid[b-6ds49elnul] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.month-picker-cell[b-6ds49elnul] {
    background: #f8f8fc;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 8px 4px;
    font-size: 0.85rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.15s;
    color: #333;
}

.month-picker-cell:hover[b-6ds49elnul] {
    background: #e8e6f7;
    border-color: #6c5ce7;
}

.month-picker-cell.selected[b-6ds49elnul] {
    background: #6c5ce7;
    color: #fff;
    font-weight: 600;
}

.month-picker-cell.current:not(.selected)[b-6ds49elnul] {
    border-color: #6c5ce7;
    color: #6c5ce7;
    font-weight: 600;
}

/* === Filters === */
.filters-section[b-6ds49elnul] {
    margin-bottom: 12px;
}

.btn-filter-toggle[b-6ds49elnul] {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f0f0f5;
    border: 2px solid #e0e0ea;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-filter-toggle:hover[b-6ds49elnul] {
    border-color: #6c5ce7;
    color: #6c5ce7;
}

.btn-filter-toggle.has-filters[b-6ds49elnul] {
    border-color: #6c5ce7;
    color: #6c5ce7;
    font-weight: 600;
    background: #f0edff;
}

.filters-panel[b-6ds49elnul] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
    padding: 16px;
    background: #fff;
    border: 2px solid #e0e0ea;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    animation: filterPanelIn-b-6ds49elnul 0.15s ease-out;
}

@keyframes filterPanelIn-b-6ds49elnul {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.filter-group[b-6ds49elnul] {
    flex: 1;
    min-width: 180px;
}

.filter-group label[b-6ds49elnul] {
    display: block;
    margin-bottom: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filters-panel .dropdown-picker-toggle[b-6ds49elnul],
.filters-panel .time-picker-input[b-6ds49elnul] {
    height: 42px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    border: 2px solid #e0e0ea;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #333;
    background: #fff;
    box-sizing: border-box;
}

.filter-time-group[b-6ds49elnul] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-dash[b-6ds49elnul] {
    color: #999;
    font-size: 0.9rem;
}

.filter-actions[b-6ds49elnul] {
    display: flex;
    align-items: flex-end;
    flex: 0 0 auto;
}

.btn-clear-filters[b-6ds49elnul] {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: 2px solid #e74c3c;
    color: #e74c3c;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-clear-filters:hover[b-6ds49elnul] {
    background: #e74c3c;
    color: #fff;
}

/* === Calendar Grid === */
.calendar-grid[b-6ds49elnul] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #e0e0ea;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.day-header[b-6ds49elnul] {
    background: #6c5ce7;
    color: #fff;
    padding: 10px 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.day-header.sunday[b-6ds49elnul] {
    background: #d63031;
}

/* === Day Cell === */
.day-cell[b-6ds49elnul] {
    background: #fff;
    min-height: 110px;
    padding: 6px;
    position: relative;
    transition: background 0.15s;
    min-width: 0;
    overflow: hidden;
}

.day-cell:hover[b-6ds49elnul] {
    background: #fafafe;
}

.day-cell.other-month[b-6ds49elnul] {
    background: #f2f2f4;
}

.day-cell.other-month .day-number[b-6ds49elnul] {
    color: #aaa;
}

.day-cell.other-month .lesson-chip[b-6ds49elnul] {
    opacity: 0.6;
}

.day-cell.other-month-future[b-6ds49elnul] {
    background: #fff;
}

.day-cell.other-month-future .day-number[b-6ds49elnul] {
    color: #aaa;
}

.day-cell.other-month-future .lesson-chip[b-6ds49elnul] {
    opacity: 0.6;
}

.day-cell.today[b-6ds49elnul] {
    background: #f0edff;
}

.day-cell.past-day[b-6ds49elnul] {
    background: #f2f2f4;
}

.day-cell.past-day .day-number[b-6ds49elnul] {
    color: #aaa;
}

.day-cell.past-day .lesson-chip[b-6ds49elnul] {
    opacity: 0.6;
}

.day-cell.sunday-cell[b-6ds49elnul] {
    background: #fff5f5;
}

.day-cell.sunday-cell .day-number[b-6ds49elnul] {
    color: #d63031;
}

.day-cell.past-day.sunday-cell[b-6ds49elnul] {
    background: #f2f2f4;
}

.day-cell.today.sunday-cell[b-6ds49elnul] {
    background: #f0edff;
}

/* === Day Number Row === */
.day-number-row[b-6ds49elnul] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.day-number[b-6ds49elnul] {
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.day-number.today-number[b-6ds49elnul] {
    background: #6c5ce7;
    color: #fff;
    font-weight: 700;
}

/* === Add Button === */
.btn-add[b-6ds49elnul] {
    background: none;
    border: 2px solid transparent;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #bbb;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    transition: all 0.2s;
    opacity: 0;
}

.day-cell:hover .btn-add[b-6ds49elnul] {
    opacity: 1;
}

.btn-add.show[b-6ds49elnul] {
    opacity: 1;
    color: #6c5ce7;
    border-color: #6c5ce7;
    background: #f0edff;
}

.btn-add:hover[b-6ds49elnul],
.btn-add.show:hover[b-6ds49elnul] {
    color: #6c5ce7;
    border-color: #6c5ce7;
    background: #f0edff;
}

/* === Lesson Chips === */
.day-lessons[b-6ds49elnul] {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.lesson-chip[b-6ds49elnul] {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 3px 6px;
    background: #e8e4ff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.68rem;
    line-height: 1.25;
    transition: background 0.15s;
    overflow: hidden;
}

.lesson-chip:hover[b-6ds49elnul] {
    background: #d4cfff;
}

.lesson-time[b-6ds49elnul] {
    color: #6c5ce7;
    font-weight: 700;
    white-space: nowrap;
}

.lesson-course[b-6ds49elnul] {
    color: #333;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lesson-child[b-6ds49elnul] {
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lesson-teacher[b-6ds49elnul] {
    color: #999;
    font-size: 0.65rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* === Expand Button === */
.btn-expand[b-6ds49elnul] {
    background: none;
    border: 1px dashed #b8b4e8;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 0.65rem;
    color: #6c5ce7;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
    margin-top: 1px;
}

.btn-expand:hover[b-6ds49elnul] {
    background: #f0edff;
    border-style: solid;
}

/* === Day Popup === */
.popup-day[b-6ds49elnul] {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 380px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: modalIn 0.2s ease-out;
    max-height: 80vh;
    overflow-y: auto;
}

.popup-lessons[b-6ds49elnul] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.popup-lesson-card[b-6ds49elnul] {
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding: 8px 12px;
    background: #f5f3ff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.35;
    transition: background 0.15s;
}

.popup-lesson-card:hover[b-6ds49elnul] {
    background: #e8e4ff;
}

.popup-lesson-card .lesson-time[b-6ds49elnul] {
    font-size: 0.85rem;
}

.popup-lesson-card .lesson-course[b-6ds49elnul] {
    font-size: 0.85rem;
}

.popup-lesson-card .lesson-child[b-6ds49elnul] {
    font-size: 0.8rem;
}

.popup-lesson-card .lesson-teacher[b-6ds49elnul] {
    font-size: 0.75rem;
}


/* === Lesson Type Switch === */
.lesson-type-switch[b-6ds49elnul] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.lesson-type-switch .form-check[b-6ds49elnul] {
    margin: 0;
    padding: 0;
    min-height: auto;
}

.lesson-type-switch .form-check-input[b-6ds49elnul] {
    width: 44px;
    height: 24px;
    margin: 0;
    cursor: pointer;
    background-color: #6c5ce7;
    border-color: #6c5ce7;
}

.lesson-type-switch .form-check-input:checked[b-6ds49elnul] {
    background-color: #6c5ce7;
    border-color: #6c5ce7;
}

.lesson-type-switch .form-check-input:focus[b-6ds49elnul] {
    box-shadow: 0 0 0 0.2rem rgba(108, 92, 231, 0.25);
    border-color: #6c5ce7;
}

.switch-label[b-6ds49elnul] {
    font-size: 0.9rem;
    font-weight: 500;
    color: #aaa;
    transition: color 0.2s, font-weight 0.2s;
    user-select: none;
}

.switch-label.active[b-6ds49elnul] {
    color: #1a1a2e;
    font-weight: 700;
}

/* === Periodic Schedule === */
.periodic-schedule[b-6ds49elnul] {
    margin-bottom: 16px;
}

.periodic-header-row[b-6ds49elnul] {
    margin-bottom: 6px;
}

/* === Add Day Button === */
.btn-add-day[b-6ds49elnul] {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #6c5ce7;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-add-day:hover[b-6ds49elnul] {
    background: #f0edff;
}



/* === Mobile elements (hidden on desktop) === */
.week-nav-mobile[b-6ds49elnul],
.week-view-mobile[b-6ds49elnul] {
    display: none;
}

/* === Responsive === */
@media (max-width: 768px) {
    .calendar-container[b-6ds49elnul] { padding: 8px; }

    /* Hide desktop elements */
    .calendar-grid[b-6ds49elnul] {
        display: none !important;
    }

    /* Show mobile elements */
    .week-nav-mobile[b-6ds49elnul],
    .week-view-mobile[b-6ds49elnul] {
        display: block;
    }

    /* Header */
    .calendar-header[b-6ds49elnul] {
        gap: 8px;
        margin-bottom: 8px;
    }
    .calendar-header h2[b-6ds49elnul] {
        font-size: 1.1rem;
        min-width: auto;
    }
    .btn-today[b-6ds49elnul] {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    /* Filters responsive */
    .filters-panel[b-6ds49elnul] {
        flex-direction: column;
    }
    .filter-group[b-6ds49elnul] {
        min-width: 100%;
    }

    /* Week navigation (mobile) */
    .week-nav-mobile[b-6ds49elnul] {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-bottom: 8px;
    }
    .week-label[b-6ds49elnul] {
        font-size: 0.9rem;
        font-weight: 600;
        color: #1a1a2e;
    }

    /* Week view */
    .week-view-mobile[b-6ds49elnul] {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    .week-day-card[b-6ds49elnul] {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 1px 4px rgba(0,0,0,0.06);
        overflow: hidden;
    }
    .week-day-card.past[b-6ds49elnul] {
        background: #f6f6f8;
    }
    .week-day-card.past .week-day-name[b-6ds49elnul],
    .week-day-card.past .week-day-date[b-6ds49elnul] {
        color: #aaa;
    }
    .week-day-card.today[b-6ds49elnul] {
        border-left: 3px solid #6c5ce7;
    }
    .week-day-card.sunday .week-day-name[b-6ds49elnul] {
        color: #d63031;
    }
    .week-day-header[b-6ds49elnul] {
        display: flex;
        align-items: center;
        padding: 10px 14px;
        gap: 8px;
        cursor: pointer;
    }
    .week-day-name[b-6ds49elnul] {
        font-weight: 600;
        font-size: 0.9rem;
        color: #1a1a2e;
        min-width: 30px;
    }
    .week-day-date[b-6ds49elnul] {
        font-size: 0.85rem;
        color: #666;
    }
    .week-day-date.today-badge[b-6ds49elnul] {
        background: #6c5ce7;
        color: #fff;
        padding: 2px 8px;
        border-radius: 10px;
        font-weight: 600;
    }
    .btn-add-mobile[b-6ds49elnul] {
        margin-left: auto;
        background: #6c5ce7;
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }
    .week-day-lessons[b-6ds49elnul] {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 0 14px 10px;
    }
    .week-lesson-chip[b-6ds49elnul] {
        display: flex;
        gap: 8px;
        align-items: center;
        padding: 6px 10px;
        background: #f5f3ff;
        border-radius: 6px;
        cursor: pointer;
        font-size: 0.82rem;
        transition: background 0.15s;
    }
    .week-lesson-chip:hover[b-6ds49elnul] {
        background: #e8e4ff;
    }
    .week-lesson-chip .lesson-time[b-6ds49elnul] {
        font-size: 0.82rem;
        min-width: 90px;
    }
    .week-lesson-chip .lesson-course[b-6ds49elnul] {
        font-size: 0.82rem;
    }
    .week-lesson-chip .lesson-child[b-6ds49elnul] {
        font-size: 0.78rem;
        margin-left: auto;
    }


    .form-row[b-6ds49elnul] {
        flex-direction: column;
        gap: 0;
    }

    /* Month picker mobile */
    .month-picker-dropdown[b-6ds49elnul] {
        min-width: 220px;
        padding: 10px;
    }
    .month-picker-cell[b-6ds49elnul] {
        padding: 10px 4px;
        font-size: 0.9rem;
    }
}
/* /Components/Pages/Report.razor.rz.scp.css */
.report-container[b-b9z7ifry35] {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.report-container h2[b-b9z7ifry35] {
    color: #1a1a2e;
    margin-bottom: 8px;
}

.report-description[b-b9z7ifry35] {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.report-form[b-b9z7ifry35] {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.form-group[b-b9z7ifry35] {
    margin-bottom: 16px;
}

.form-group label[b-b9z7ifry35] {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
}

.form-input[b-b9z7ifry35] {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e0e0ea;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-input:focus[b-b9z7ifry35] {
    outline: none;
    border-color: #6c5ce7;
}

.form-row[b-b9z7ifry35] {
    display: flex;
    gap: 12px;
}

.form-row .form-group[b-b9z7ifry35] {
    flex: 1;
}

.validation-error[b-b9z7ifry35] {
    color: #e74c3c;
    background: #ffeaea;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.form-actions[b-b9z7ifry35] {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
}

.btn-generate[b-b9z7ifry35] {
    background: #6c5ce7;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-generate:hover[b-b9z7ifry35] {
    background: #5a4bd1;
}

@media (max-width: 640px) {
    .form-row[b-b9z7ifry35] {
        flex-direction: column;
        gap: 0;
    }
}
/* /Components/Pages/Teachers.razor.rz.scp.css */
.teachers-container[b-bvwnvqb7pq] {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
}

.teachers-container h2[b-bvwnvqb7pq] {
    color: #1a1a2e;
    margin-bottom: 20px;
}

.add-teacher-form[b-bvwnvqb7pq] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.form-row-3[b-bvwnvqb7pq] {
    display: flex;
    gap: 10px;
}

.form-actions-row[b-bvwnvqb7pq] {
    display: flex;
    justify-content: flex-end;
}

.form-input[b-bvwnvqb7pq] {
    flex: 1;
    padding: 10px 14px;
    border: 2px solid #e0e0ea;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-input:focus[b-bvwnvqb7pq] {
    outline: none;
    border-color: #6c5ce7;
}

.btn-add[b-bvwnvqb7pq] {
    background: #6c5ce7;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-add:hover:not(:disabled)[b-bvwnvqb7pq] {
    background: #5a4bd1;
}

.btn-add:disabled[b-bvwnvqb7pq] {
    opacity: 0.5;
    cursor: not-allowed;
}

.validation-error[b-bvwnvqb7pq] {
    color: #e74c3c;
    background: #ffeaea;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
}

.empty-text[b-bvwnvqb7pq] {
    color: #999;
    text-align: center;
    padding: 40px 20px;
    font-size: 0.95rem;
}

.teachers-list[b-bvwnvqb7pq] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (max-width: 640px) {
    .form-row-3[b-bvwnvqb7pq] {
        flex-direction: column;
    }
}
/* /Components/TimePicker.razor.rz.scp.css */
/* === TimePicker === */
.time-picker-wrapper[b-nntnsvegez] {
    position: relative;
}

.time-picker-input[b-nntnsvegez] {
    cursor: pointer !important;
    background-color: #fff !important;
    caret-color: transparent;
}

.time-picker-input.placeholder-shown[b-nntnsvegez] {
    color: #999 !important;
}

.time-picker-backdrop[b-nntnsvegez] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1050;
}

.time-picker-popup[b-nntnsvegez] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 1060;
    background: #fff;
    border: 2px solid #e0e0ea;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 12px;
    min-width: 260px;
    animation: timePickerFadeIn-b-nntnsvegez 0.15s ease-out;
}

@keyframes timePickerFadeIn-b-nntnsvegez {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.time-picker-header[b-nntnsvegez] {
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.time-picker-body[b-nntnsvegez] {
    display: flex;
    gap: 12px;
}

.time-picker-column[b-nntnsvegez] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.time-picker-column-label[b-nntnsvegez] {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.time-picker-cells[b-nntnsvegez] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    max-height: 220px;
    overflow-y: auto;
}

.time-picker-cell[b-nntnsvegez] {
    background: #f8f8fc;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 6px 2px;
    font-size: 0.85rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.15s;
    color: #333;
    line-height: 1.2;
}

.time-picker-cell:hover[b-nntnsvegez] {
    background: #e8e6f7;
    border-color: #6c5ce7;
}

.time-picker-cell.selected[b-nntnsvegez] {
    background: #6c5ce7;
    color: #fff;
    font-weight: 600;
    border-color: #6c5ce7;
}

.time-picker-footer[b-nntnsvegez] {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.time-picker-ok[b-nntnsvegez] {
    min-width: 80px;
    background: #6c5ce7;
    border-color: #6c5ce7;
    border-radius: 8px;
    font-weight: 600;
}

.time-picker-ok:hover[b-nntnsvegez] {
    background: #5a4bd1;
    border-color: #5a4bd1;
}


