/* /Components/ErrorDisplay.razor.rz.scp.css */
.error-display[b-cgkpd0vz9n] {
    padding: 1rem;
    border: 1px solid #f5c2c7;
    border-radius: 0.75rem;
    background-color: #fff1f2;
    color: #7f1d1d;
}

.error-display-timeout[b-cgkpd0vz9n] {
    border-color: #fcd34d;
    background-color: #fffbeb;
    color: #92400e;
}

.error-title[b-cgkpd0vz9n] {
    margin: 0 0 0.5rem;
    font-weight: 700;
}

.error-message[b-cgkpd0vz9n],
.error-hint[b-cgkpd0vz9n] {
    margin: 0 0 0.75rem;
}

.retry-button[b-cgkpd0vz9n] {
    border: none;
    border-radius: 999px;
    background-color: #1d4ed8;
    color: #fff;
    padding: 0.6rem 1rem;
    font-weight: 600;
    cursor: pointer;
}

.retry-button:hover[b-cgkpd0vz9n] {
    background-color: #1e40af;
}
/* /Components/LoadingSpinner.razor.rz.scp.css */
.loading-spinner[b-zt7d98698u] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
    color: #1a1a2e;
}

.spinner-circle[b-zt7d98698u] {
    width: 1.5rem;
    height: 1.5rem;
    border: 0.2rem solid #d9e2f2;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin-b-zt7d98698u 0.8s linear infinite;
}

.loading-text[b-zt7d98698u] {
    font-weight: 500;
}

@keyframes spin-b-zt7d98698u {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
/* /Components/ProjectCard.razor.rz.scp.css */
.project-card[b-ufyn840s84] {
    box-sizing: border-box;
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    max-width: 100%;
}

.project-header[b-ufyn840s84] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.project-name[b-ufyn840s84] {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
}

.project-status[b-ufyn840s84] {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
}

.project-status.status-on-track[b-ufyn840s84] {
    background: #d4edda;
    color: #155724;
}

.project-status.status-at-risk[b-ufyn840s84] {
    background: #fff3cd;
    color: #856404;
}

.project-status.status-blocked[b-ufyn840s84] {
    background: #f8d7da;
    color: #721c24;
}

.progress-container[b-ufyn840s84] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.progress-bar[b-ufyn840s84] {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill[b-ufyn840s84] {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-fill.status-on-track[b-ufyn840s84] {
    background: #28a745;
}

.progress-fill.status-at-risk[b-ufyn840s84] {
    background: #ffc107;
}

.progress-fill.status-blocked[b-ufyn840s84] {
    background: #dc3545;
}

.progress-text[b-ufyn840s84] {
    font-size: 0.8rem;
    font-weight: 600;
    color: #495057;
    min-width: 35px;
}

.project-lead[b-ufyn840s84] {
    margin: 0;
    font-size: 0.8rem;
    color: #6c757d;
}

@media (max-width: 767.98px) {
    .project-card[b-ufyn840s84] {
        padding: 1rem;
    }

    .project-header[b-ufyn840s84] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .project-name[b-ufyn840s84] {
        font-size: 1rem;
    }

    .project-status[b-ufyn840s84] {
        font-size: 0.875rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .progress-text[b-ufyn840s84],
    .project-lead[b-ufyn840s84] {
        font-size: 0.95rem;
    }
}
/* /Components/TeamMemberCard.razor.rz.scp.css */
.team-card[b-2a99k02ryx] {
    box-sizing: border-box;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.team-card:hover[b-2a99k02ryx] {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.card-avatar[b-2a99k02ryx] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.card-info[b-2a99k02ryx] {
    text-align: center;
}

.card-name[b-2a99k02ryx] {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
}

.card-role[b-2a99k02ryx] {
    margin: 0.25rem 0 0;
    font-size: 0.85rem;
    color: #6c757d;
}

.card-status[b-2a99k02ryx] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator[b-2a99k02ryx] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.status-available[b-2a99k02ryx] {
    background-color: #28a745;
}

.status-meeting[b-2a99k02ryx] {
    background-color: #007bff;
}

.status-focussing[b-2a99k02ryx] {
    background-color: #ffc107;
}

.status-away[b-2a99k02ryx] {
    background-color: #6c757d;
}

.status-select[b-2a99k02ryx] {
    font-size: 0.8rem;
    color: #495057;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.2rem 0.4rem;
    background: white;
    cursor: pointer;
    outline: none;
}

.status-select:focus[b-2a99k02ryx] {
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

@media (max-width: 767.98px) {
    .team-card[b-2a99k02ryx] {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .card-name[b-2a99k02ryx] {
        font-size: 1.05rem;
    }

    .card-role[b-2a99k02ryx] {
        font-size: 0.95rem;
    }

    .status-select[b-2a99k02ryx] {
        min-height: 44px;
        min-width: 44px;
        font-size: 1rem;
        padding: 0.4rem 0.6rem;
    }
}
/* /Components/ToastContainer.razor.rz.scp.css */
.toast-container[b-iq6fyz2ct1] {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: min(24rem, calc(100vw - 2rem));
    pointer-events: none;
}

.toast-item[b-iq6fyz2ct1] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-left: 4px solid transparent;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 24px rgba(26, 26, 46, 0.14);
    cursor: pointer;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(-0.5rem);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast-visible[b-iq6fyz2ct1] {
    opacity: 1;
    transform: translateY(0);
}

.toast-hidden[b-iq6fyz2ct1] {
    opacity: 0;
    transform: translateY(-0.5rem);
}

.toast-success[b-iq6fyz2ct1] {
    border-left-color: #28a745;
}

.toast-warning[b-iq6fyz2ct1] {
    border-left-color: #d39e00;
}

.toast-info[b-iq6fyz2ct1] {
    border-left-color: #6c757d;
}

.toast-body[b-iq6fyz2ct1] {
    flex: 1;
}

.toast-message[b-iq6fyz2ct1] {
    margin: 0;
    color: #1a1a2e;
    font-size: 0.95rem;
    line-height: 1.4;
}

.toast-dismiss[b-iq6fyz2ct1] {
    border: 0;
    background: transparent;
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.toast-dismiss:hover[b-iq6fyz2ct1] {
    color: #1a1a2e;
}

@media (max-width: 640.98px) {
    .toast-container[b-iq6fyz2ct1] {
        left: 1rem;
        right: 1rem;
        width: auto;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-z19qp6q8w2] {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.page[b-z19qp6q8w2],
.page *[b-z19qp6q8w2] {
    box-sizing: border-box;
}

main[b-z19qp6q8w2] {
    flex: 1;
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

.sidebar[b-z19qp6q8w2] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
    width: 100%;
    max-width: 100%;
}

.top-row[b-z19qp6q8w2] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

    .top-row[b-z19qp6q8w2]  a, .top-row[b-z19qp6q8w2]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-z19qp6q8w2]  a:hover, .top-row[b-z19qp6q8w2]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-z19qp6q8w2]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

article[b-z19qp6q8w2] {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
}

@media (max-width: 640.98px) {
    .top-row[b-z19qp6q8w2] {
        justify-content: space-between;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .top-row[b-z19qp6q8w2]  a, .top-row[b-z19qp6q8w2]  .btn-link {
        margin-left: 0;
    }

    article[b-z19qp6q8w2] {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

@media (min-width: 641px) {
    .page[b-z19qp6q8w2] {
        flex-direction: row;
    }

    .sidebar[b-z19qp6q8w2] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-z19qp6q8w2] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-z19qp6q8w2]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-z19qp6q8w2], article[b-z19qp6q8w2] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-pcn030aw5j] {
    background-color: rgba(255, 255, 255, 0.1);
    min-width: 44px;
    min-height: 44px;
    padding: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.top-row[b-pcn030aw5j] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-pcn030aw5j] {
    font-size: 1.1rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.bi[b-pcn030aw5j] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-pcn030aw5j] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-pcn030aw5j] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-pcn030aw5j] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-pcn030aw5j] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-pcn030aw5j] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-pcn030aw5j] {
        padding-bottom: 1rem;
    }

    .nav-item[b-pcn030aw5j]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-pcn030aw5j]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-pcn030aw5j]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (max-width: 640.98px) {
    .top-row[b-pcn030aw5j] {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .nav-scrollable[b-pcn030aw5j] {
        width: 100%;
        overflow-x: hidden;
    }

    .nav-item[b-pcn030aw5j] {
        font-size: 1rem;
    }
}

@media (min-width: 641px) {
    .navbar-toggler[b-pcn030aw5j] {
        display: none;
    }

    .collapse[b-pcn030aw5j] {
        display: block;
    }
    
    .nav-scrollable[b-pcn030aw5j] {
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Home.razor.rz.scp.css */
.projects-section[b-iqflqt65f9] {
    margin-bottom: 2rem;
    max-width: 100%;
}

.projects-section h2[b-iqflqt65f9],
.team-section h2[b-iqflqt65f9] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.projects-grid[b-iqflqt65f9] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
}

.team-grid[b-iqflqt65f9] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 767.98px) {
    .projects-grid[b-iqflqt65f9] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .team-grid[b-iqflqt65f9] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .projects-section h2[b-iqflqt65f9],
    .team-section h2[b-iqflqt65f9] {
        font-size: 1.1rem;
    }
}
