/* ---- Account page layout ---- */

.acct-page {
    min-height: calc(100vh - 56px);
}

.acct-sidebar-col {
    border-right: 1px solid #e0e0e0;
    background-color: #f8f9fa;
    min-height: calc(100vh - 56px);
}

.acct-sidebar {
    padding: 1.25rem 0.75rem;
    position: sticky;
    top: 56px;
}

.acct-sidebar-nav .nav-link {
    color: #495057;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    transition: background-color 0.12s ease, color 0.12s ease;
}

.acct-sidebar-nav .nav-link:hover {
    background-color: #e9ecef;
    color: #212529;
    text-decoration: none;
}

.acct-sidebar-nav .nav-link.active {
    background-color: #1E40AF;
    color: #fff;
}

.acct-sidebar-nav .nav-link.active:hover {
    background-color: #1a3a9e;
    color: #fff;
}

/* ---- Content area ---- */

.acct-content {
    padding: 1.5rem 2rem;
}

/* ---- Typography ---- */

.acct-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.75rem;
}

.acct-section-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}

.acct-field-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.acct-field-value {
    font-size: 0.9rem;
    color: #212529;
    font-weight: 500;
}

/* ---- Assignments table inside edit panel ---- */

.acct-assignments-table {
    font-size: 0.85rem;
}

.acct-assignments-table th {
    font-size: 0.72rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom-width: 1px;
}

.acct-assignments-table td {
    vertical-align: middle;
}

/* ---- User detail side panel ---- */

.acct-detail-panel {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 0.375rem;
    padding: 1rem;
    height: 420px;
    overflow-y: auto;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
