/* /Layout/MainLayout.razor.rz.scp.css */
.app-container[b-vgwkskv7wb] {
    display: flex;
    min-height: 100vh;
}

.sidebar[b-vgwkskv7wb] {
    width: 250px;
    min-height: 100vh;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transition: transform 0.25s ease;
}

.main-content[b-vgwkskv7wb] {
    flex: 1;
    margin-left: 250px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f8f9fa;
    transition: margin-left 0.25s ease;
}

.top-bar[b-vgwkskv7wb] {
    height: 56px;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 50;
}

.topbar-brand[b-vgwkskv7wb] {
    font-size: 1rem;
}

.sidebar-toggle[b-vgwkskv7wb] {
    border: none;
    font-size: 1.25rem;
    padding: 0.25rem 0.5rem;
    line-height: 1;
}

.content-area[b-vgwkskv7wb] {
    flex: 1;
    padding: 1.25rem 1.5rem;
}

.sidebar-backdrop[b-vgwkskv7wb] {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99;
    cursor: pointer;
}

#blazor-error-ui[b-vgwkskv7wb] {
    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-vgwkskv7wb] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* Desktop: wide sidebar */
@media (min-width: 993px) {
    .content-area[b-vgwkskv7wb] {
        padding: 1.5rem 2rem;
    }
}

/* Tablet: narrower sidebar */
@media (min-width: 769px) and (max-width: 992px) {
    .sidebar[b-vgwkskv7wb] {
        width: 200px;
    }

    .main-content[b-vgwkskv7wb] {
        margin-left: 200px;
    }
}

/* Mobile: off-canvas sidebar */
@media (max-width: 768px) {
    .sidebar[b-vgwkskv7wb] {
        transform: translateX(-100%);
        width: 260px;
        box-shadow: none;
    }

    .main-content[b-vgwkskv7wb] {
        margin-left: 0;
    }

    .content-area[b-vgwkskv7wb] {
        padding: 1rem;
    }

    /* When sidebar-open class is on the container */
    .app-container.sidebar-open .sidebar[b-vgwkskv7wb] {
        transform: translateX(0);
        box-shadow: 4px 0 16px rgba(0, 0, 0, 0.25);
    }

    .app-container.sidebar-open .sidebar-backdrop[b-vgwkskv7wb] {
        display: block;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.sidebar-brand[b-kz8idcvu59] {
    padding: 1rem 1.25rem;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    overflow: hidden;
}

.sidebar-nav[b-kz8idcvu59] {
    padding: 0.75rem;
}

.nav-item[b-kz8idcvu59] {
    margin-bottom: 0.25rem;
}

    .nav-item[b-kz8idcvu59]  .nav-link {
        color: #94a3b8;
        padding: 0.625rem 0.875rem;
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.875rem;
        text-decoration: none;
        transition: all 0.15s ease;
        background: none;
        border: none;
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
    }

    .nav-item[b-kz8idcvu59]  .nav-link:hover {
        color: #e2e8f0;
        background-color: rgba(255, 255, 255, 0.08);
    }

    .nav-item[b-kz8idcvu59]  .nav-link.active {
        color: #fff;
        background-color: rgba(59, 130, 246, 0.5);
    }

    .nav-item[b-kz8idcvu59]  .nav-link i {
        font-size: 1.1rem;
        width: 1.25rem;
        text-align: center;
        flex-shrink: 0;
    }
/* /Pages/Calendar/Calendar.razor.rz.scp.css */
.calendar-grid[b-u0uh96vuy7] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border: 1px solid var(--bs-border-color, #dee2e6);
    border-radius: 0.5rem;
    overflow: hidden;
    background: var(--bs-body-bg, #fff);
}

.calendar-header[b-u0uh96vuy7] {
    padding: 0.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--bs-secondary-color, #6c757d);
    background: var(--bs-tertiary-bg, #f8f9fa);
    border-bottom: 1px solid var(--bs-border-color, #dee2e6);
}

.calendar-cell[b-u0uh96vuy7] {
    min-height: 100px;
    padding: 0.35rem;
    border-right: 1px solid var(--bs-border-color, #dee2e6);
    border-bottom: 1px solid var(--bs-border-color, #dee2e6);
    overflow: hidden;
}

.calendar-cell:nth-child(7n + 7)[b-u0uh96vuy7] {
    border-right: none;
}

.calendar-cell.today[b-u0uh96vuy7] {
    background: rgba(var(--bs-primary-rgb, 13, 110, 253), 0.06);
}

.calendar-cell.other-month[b-u0uh96vuy7] {
    opacity: 0.4;
}

.cell-date[b-u0uh96vuy7] {
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--bs-body-color);
}

.cell-date.today-marker[b-u0uh96vuy7] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    background: var(--bs-primary, #0d6efd);
    color: #fff;
    font-weight: 700;
}

.cell-items[b-u0uh96vuy7] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.calendar-item[b-u0uh96vuy7] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 1px 4px;
    border-radius: 3px;
    font-size: 0.7rem;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-left: 3px solid transparent;
    transition: background 0.15s;
}

.calendar-item:hover[b-u0uh96vuy7] {
    background: rgba(0, 0, 0, 0.06);
}

.calendar-item i[b-u0uh96vuy7] {
    flex-shrink: 0;
    font-size: 0.65rem;
}

.item-label[b-u0uh96vuy7] {
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-item[b-u0uh96vuy7] {
    border-left-color: #6610f2;
    color: #4a0e8f;
}

.task-item.priority-critical[b-u0uh96vuy7] {
    border-left-color: #dc3545;
}

.task-item.priority-high[b-u0uh96vuy7] {
    border-left-color: #fd7e14;
}

.task-item.priority-medium[b-u0uh96vuy7] {
    border-left-color: #6610f2;
}

.task-item.priority-low[b-u0uh96vuy7] {
    border-left-color: #198754;
}

.overflow-label[b-u0uh96vuy7] {
    font-size: 0.65rem;
    color: var(--bs-secondary-color, #6c757d);
    padding-left: 4px;
}

@media (max-width: 768px) {
    .calendar-cell[b-u0uh96vuy7] {
        min-height: 60px;
        padding: 0.2rem;
    }

    .item-label[b-u0uh96vuy7] {
        display: none;
    }

    .calendar-item[b-u0uh96vuy7] {
        justify-content: center;
        padding: 2px;
        border-left-width: 2px;
    }

    .calendar-header[b-u0uh96vuy7] {
        font-size: 0.65rem;
        padding: 0.35rem 0.2rem;
    }
}
