.website-dashboard .portal-header {
    width: 100%;
    padding: 16px 3.5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: rgba(236, 244, 255, 0.92);
    border-bottom: 1px solid rgba(69, 121, 210, 0.2);
    backdrop-filter: blur(8px);
}

.website-dashboard .brand {
    color: #0b2c68;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.website-dashboard .brand img {
    width: 36px;
    height: 36px;
    border-radius: 0;
    object-fit: contain;
}

.website-dashboard .portal-nav {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.website-dashboard .portal-nav a {
    color: #1a499a;
    font-weight: 700;
}

.website-dashboard .portal-main {
    width: 100%;
    padding: 30px 4vw 44px;
    display: grid;
    gap: 20px;
    background: linear-gradient(160deg, #f3f8ff, #dbe9ff);
}

.website-dashboard .portal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.website-dashboard .portal-card,
.website-dashboard .portal-section {
    border-radius: 18px;
    border: 1px solid rgba(70, 123, 215, 0.22);
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(27, 68, 135, 0.1);
}

.website-dashboard .portal-card {
    padding: 16px;
}

.website-dashboard .portal-card h2,
.website-dashboard .section-head h2 {
    margin: 0 0 10px;
    color: #102f68;
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
}

.website-dashboard .portal-card p,
.website-dashboard .section-head p {
    color: #3c619a;
}

.website-dashboard .portal-section {
    padding: 18px;
}

.website-dashboard .summary-actions {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.website-dashboard .portal-grid--support {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
}

.website-dashboard .portal-form {
    display: grid;
    gap: 14px;
}

.website-dashboard .portal-form label,
.website-dashboard .portal-section label {
    display: grid;
    gap: 6px;
    color: #274a83;
    font-weight: 700;
}

.website-dashboard .portal-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.website-dashboard .portal-hint {
    color: #4c6ea4;
    font-weight: 600;
    align-self: center;
}

.website-dashboard .portal-table-wrap {
    overflow-x: auto;
}

.website-dashboard .portal-table {
    width: 100%;
    border-collapse: collapse;
}

.website-dashboard .portal-table th,
.website-dashboard .portal-table td {
    padding: 12px 10px;
    text-align: left;
    border-bottom: 1px solid rgba(69, 121, 210, 0.14);
    color: #23406e;
}

.website-dashboard .portal-table th {
    color: #12356b;
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    font-size: 0.95rem;
}

.website-dashboard .portal-empty {
    text-align: center;
    color: #5f78a3;
}

.website-dashboard .portal-callout {
    padding: 16px;
    border-radius: 14px;
    border: 1px solid rgba(69, 121, 210, 0.2);
    background: linear-gradient(145deg, rgba(235, 244, 255, 0.9), rgba(221, 233, 255, 0.9));
    color: #1e4b8b;
    font-weight: 600;
}

.website-dashboard .table-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.website-dashboard .table-badge.is-active {
    background: rgba(22, 163, 74, 0.12);
    color: #177c3b;
}

.website-dashboard .table-badge.is-muted {
    background: rgba(71, 85, 105, 0.1);
    color: #4f627f;
}

@media (max-width: 860px) {
    .website-dashboard .portal-grid {
        grid-template-columns: 1fr;
    }

    .website-dashboard .portal-grid--support,
    .website-dashboard .portal-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .website-dashboard .portal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 16px;
    }

    .website-dashboard .portal-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .website-dashboard .portal-main {
        padding: 22px 16px 36px;
        gap: 16px;
    }

    .website-dashboard .portal-card,
    .website-dashboard .portal-section {
        padding: 14px;
    }

    .website-dashboard .portal-table th,
    .website-dashboard .portal-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }

    .website-dashboard .summary-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 520px) {
    .website-dashboard .portal-header {
        padding: 10px 12px;
    }

    .website-dashboard .portal-card h2,
    .website-dashboard .section-head h2 {
        font-size: 1.25rem;
    }
}
