﻿/* Reset en basis styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.header-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    min-height: 40px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.logo i {
    font-size: 2.5rem;
    color: var(--brand-color);
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Main content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Search section */
.search-section {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

/* Accountmanagers section */
.accountants-section {
    margin-top: 25px;
}

.accountants-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.accountant-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.accountant-btn {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.accountant-btn:hover {
    background: linear-gradient(135deg, var(--brand-color) 0%, #4a5568 100%);
    border-color: var(--brand-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.3);
    color: white;
}

.accountant-btn:active {
    transform: translateY(0);
}

.accountant-btn i {
    font-size: 2rem;
    color: var(--brand-color);
    transition: all 0.3s ease;
}

.accountant-btn:hover i {
    color: white;
    transform: scale(1.1);
}

.accountant-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    transition: all 0.3s ease;
}

.accountant-btn:hover .accountant-name {
    color: white;
}

.accountant-subtitle {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
}

.accountant-btn:hover .accountant-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.accountant-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.accountant-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid var(--brand-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

.accountant-btn.selected {
    background: linear-gradient(135deg, var(--brand-color) 0%, #4a5568 100%);
    border-color: var(--brand-color);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.3);
}

.accountant-btn.selected::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    color: var(--brand-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.accountant-btn.selected i {
    color: white;
    transform: scale(1.1);
}

.accountant-btn.selected .accountant-name {
    color: white;
}

.accountant-btn.selected .accountant-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.location-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--brand-color);
    width: 16px;
}

.form-group input {
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.form-group input:focus {
    outline: none;
    border-color: var(--brand-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.search-btn {
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--brand-color) 0%, #4a5568 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
}

.search-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.3);
}

.search-btn:active:not(:disabled) {
    transform: translateY(0);
}

.search-btn:disabled {
    background: linear-gradient(135deg, #cbd5e0 0%, #a0aec0 100%);
    cursor: not-allowed;
    opacity: 0.6;
}

/* Loading */
.loading {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e1e5e9;
    border-top: 4px solid var(--brand-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 5px;
}

.loading small {
    color: #888;
    font-size: 0.9rem;
}

/* Error message */
.error-message {
    background: #fee;
    color: #c53030;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #c53030;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Results */
.results {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.results-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f4f8;
}

.results-header h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.results-header h2 i {
    color: #ffd700;
}

.client-info {
    color: #666;
    font-size: 0.95rem;
}

/* Summary stats */
.summary-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

/* Calendar tabs */
.calendar-tabs {
    margin-bottom: 30px;
}

.tabs-header {
    display: flex;
    border-bottom: 2px solid #e1e5e9;
    margin-bottom: 20px;
    overflow-x: auto;
    gap: 0;
}

.tab-button {
    background: none;
    border: none;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: fit-content;
}

.tab-button:hover {
    color: var(--brand-color);
    background: rgba(255, 140, 0, 0.05);
}

.tab-button.active {
    color: var(--brand-color);
    border-bottom-color: var(--brand-color);
    background: rgba(255, 140, 0, 0.1);
}

.tab-badge {
    background: var(--brand-color);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.tab-button.active .tab-badge {
    background: white;
    color: var(--brand-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-color);
}

.stat-label {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Days list */
.days-list {
    display: grid;
    gap: 20px;
}

.day-card {
    background: #fafbfc;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.day-card:hover {
    border-color: var(--brand-color);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.1);
}

.day-card.rank-1 {
    background: linear-gradient(135deg, #fff9e6 0%, #fff5cc 100%);
    border-color: #ffd700;
}

.day-card.rank-2 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-color: #c0c0c0;
}

.day-card.rank-3 {
    background: linear-gradient(135deg, #fff2e6 0%, #ffe5cc 100%);
    border-color: #cd7f32;
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.day-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.day-title h3 {
    font-size: 1.3rem;
    color: #333;
    margin: 0;
}

.day-name {
    background: var(--brand-color);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.manager-badge {
    background: #4a5568;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
}

.manager-badge i {
    font-size: 0.7rem;
}

/* Possible Slots Section */
.possible-slots-section {
    grid-column: 1 / -1;
}

.possible-slots-section h4 {
    margin-bottom: 12px;
}

.slots-list {
    display: grid;
    gap: 8px;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 5px;
}

/* Custom scrollbar for slots list */
.slots-list::-webkit-scrollbar {
    width: 6px;
}

.slots-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.slots-list::-webkit-scrollbar-thumb {
    background: var(--brand-color);
    border-radius: 3px;
}

.slots-list::-webkit-scrollbar-thumb:hover {
    background: #e67e00;
}

.slot-item {
    background: #f8f9fa;
    border: 1px solid #e1e5e9;
    border-radius: 6px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.slot-item:hover {
    background: #e9ecef;
    border-color: var(--brand-color);
    transform: translateX(5px);
}

.slot-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #333;
    font-family: 'Monaco', 'Menlo', monospace;
}

.slot-time i {
    color: var(--brand-color);
}

.slot-buffer {
    font-size: 0.85rem;
    color: #666;
    background: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #e1e5e9;
}

.rank-badge {
    background: linear-gradient(135deg, var(--brand-color) 0%, #4a5568 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rank-badge.rank-1 {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
}

.rank-badge.rank-2 {
    background: linear-gradient(135deg, #c0c0c0 0%, #e5e5e5 100%);
    color: #333;
}

.rank-badge.rank-3 {
    background: linear-gradient(135deg, #cd7f32 0%, #daa520 100%);
    color: white;
}

.day-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.detail-section {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
}

.detail-section h4 {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-section h4 i {
    color: var(--brand-color);
    width: 14px;
}

.detail-value {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.detail-secondary {
    font-size: 0.85rem;
    color: #666;
    margin-top: 4px;
}

.time-slot {
    background: #e8f4f8;
    padding: 8px 12px;
    border-radius: 6px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
}

.distance-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.distance-badge {
    background: var(--brand-color);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.duration-badge {
    background: #28a745;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Appointments list */
.appointments-section {
    grid-column: 1 / -1; /* Span full width */
}

.appointments-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.appointment-item {
    background: #f8f9fa;
    border: 1px solid #e1e5e9;
    border-radius: 6px;
    padding: 12px;
    transition: all 0.3s ease;
}

.appointment-item:hover {
    background: #e9ecef;
    border-color: var(--brand-color);
}

.appointment-time {
    font-size: 0.85rem;
    color: var(--brand-color);
    font-weight: 600;
    font-family: 'Monaco', 'Menlo', monospace;
}

.appointment-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin: 4px 0;
}

.appointment-location {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.appointment-distance {
    background: var(--brand-color);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    flex-shrink: 0;
}

/* Legend */
.legend {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
}

.legend h3 {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.legend-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.legend-item i {
    width: 16px;
    color: var(--brand-color);
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px 0;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* Utility classes */
.hidden {
    display: none !important;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .logo i {
        font-size: 2rem;
    }
    
    .search-section,
    .results {
        padding: 20px;
    }
    
    .accountant-buttons {
        grid-template-columns: 1fr;
    }
    
    .accountant-btn {
        padding: 15px;
    }
    
    .accountant-btn i {
        font-size: 1.5rem;
    }
    
    .summary-stats {
        gap: 20px;
    }
    
    .day-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .day-details {
        grid-template-columns: 1fr;
    }
    
    .legend-items {
        grid-template-columns: 1fr;
    }
    
    .tabs-header {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .tab-button {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Login Page Styling */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    padding: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.login-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    padding: 48px;
    max-width: 440px;
    width: 100%;
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--brand-color);
    border-radius: 16px;
    margin-bottom: 16px;
}

.login-icon i {
    font-size: 32px;
    color: white;
}

.login-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.login-subtitle {
    color: #718096;
    font-size: 14px;
}

.login-form-group {
    margin-bottom: 20px;
}

.login-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
}

.login-label i {
    margin-right: 8px;
    color: var(--brand-color);
}

.login-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.login-input:focus {
    border-color: var(--brand-color);
}

.login-error {
    padding: 12px 16px;
    background-color: #fed7d7;
    border: 1px solid #fc8181;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-error i {
    color: #c53030;
}

.login-error-text {
    color: #c53030;
    font-size: 14px;
}

.login-button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: var(--brand-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.login-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
    background: #e67e00;
}

.login-button:disabled {
    background: #a0aec0;
    cursor: not-allowed;
}

.login-footer {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.login-footer-text {
    font-size: 12px;
    color: #718096;
}

.login-footer-text i {
    margin-right: 6px;
}

/* Responsive styles */
@media (max-width: 480px) {
    .logo {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .location-form {
        gap: 15px;
    }
    
    .search-btn {
        padding: 12px 20px;
    }
}


/* =====================
   UNIVERSAL PLATFORM - EXTRA STYLES
   ===================== */

/* UserInfo dropdown */
.user-info-wrapper { position: relative; }
.user-info-trigger { display: flex; align-items: center; gap: 12px; padding: 8px 16px; background: rgba(255,255,255,0.1); border-radius: 8px; color: white; cursor: pointer; transition: background 0.2s; }
.user-info-trigger:hover { background: rgba(255,255,255,0.15); }
.user-info-avatar { font-size: 24px; }
.user-info-email { font-size: 14px; font-weight: 600; }
.user-info-role { font-size: 12px; opacity: 0.8; }
.user-info-chevron { font-size: 12px; opacity: 0.7; }
.user-info-dropdown { position: absolute; top: 100%; right: 0; margin-top: 8px; background: white; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); min-width: 200px; z-index: 1000; overflow: hidden; }
.user-info-dropdown-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; color: #2d3748; text-decoration: none; font-size: 14px; font-weight: 500; transition: background 0.2s; border-top: 1px solid #e2e8f0; }
.user-info-dropdown-item:first-child { border-top: none; }
.user-info-dropdown-item:hover { background: #f7fafc; }
.user-info-dropdown-item i { color: var(--brand-color); width: 16px; }

/* Logout button */
.logout-btn { display: flex; align-items: center; gap: 8px; padding: 8px 16px; background: var(--brand-color); color: white; border: none; border-radius: 8px; cursor: pointer; font-size: 14px; font-weight: 600; transition: background-color 0.2s ease-in-out; }
.logout-btn:hover:not(:disabled) { background: #e67e00; }
.logout-btn:disabled { opacity: 0.7; cursor: wait; }

/* Dashboard back link */
.dashboard-back-link { display: inline-flex; align-items: center; gap: 8px; color: white; text-decoration: none; font-size: 14px; opacity: 0.9; transition: opacity 0.2s; }
.dashboard-back-link:hover { opacity: 1; }

/* Btn primary */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: var(--brand-color); color: white; text-decoration: none; border-radius: 8px; font-weight: 600; font-size: 14px; border: none; cursor: pointer; transition: all 0.2s; }
.btn-primary:hover { background: #e67e00; transform: translateY(-1px); }

/* Page tabs */
.page-tabs { display: flex; gap: 8px; margin-bottom: 4px; }
.page-tab { display: flex; align-items: center; gap: 8px; padding: 10px 20px; background: rgba(255,255,255,0.15); color: white; border: none; border-radius: 8px 8px 0 0; cursor: pointer; font-size: 15px; font-weight: 500; transition: all 0.2s; }
.page-tab:hover { background: rgba(255,255,255,0.25); }
.page-tab.active { background: white; color: #2d3748; font-weight: 600; }
.page-tab-content { display: none; }
.page-tab-content.active { display: block; }

/* Terugbel panel */
.terugbel-panel { background: white; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); overflow: hidden; margin-bottom: 4px; }
.terugbel-panel-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; cursor: pointer; background: var(--brand-color); color: white; user-select: none; }
.terugbel-panel-title { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; }
.terugbel-badge { background: white; color: var(--brand-color); padding: 2px 10px; border-radius: 20px; font-size: 13px; font-weight: 700; min-width: 24px; text-align: center; }
.terugbel-badge.empty { background: rgba(255,255,255,0.4); color: white; }
.terugbel-chevron { transition: transform 0.3s ease; font-size: 14px; }
.terugbel-panel.collapsed .terugbel-chevron { transform: rotate(-90deg); }
.terugbel-panel-body { max-height: 400px; overflow-y: auto; padding: 12px; transition: max-height 0.3s ease; }
.terugbel-panel.collapsed .terugbel-panel-body { max-height: 0; padding: 0; overflow: hidden; }
.terugbel-panel-loading, .terugbel-panel-error, .terugbel-panel-empty { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 20px; color: #718096; font-size: 14px; }
.terugbel-panel-error { color: #e53e3e; }
.terugbel-panel-empty { color: #48bb78; }
.terugbel-list { display: flex; flex-direction: column; gap: 8px; }
.terugbel-item { display: flex; align-items: stretch; gap: 12px; background: #f7fafc; border: 1px solid #e2e8f0; border-radius: 8px; padding: 12px; cursor: pointer; transition: all 0.2s; }
.terugbel-item:hover { background: #edf2f7; border-color: var(--brand-color); transform: translateX(2px); }
.terugbel-item-date-col { display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 44px; background: var(--brand-color); border-radius: 6px; padding: 6px; color: white; text-align: center; }
.terugbel-item-date-day { font-size: 20px; font-weight: 700; line-height: 1; }
.terugbel-item-date-month { font-size: 11px; font-weight: 600; text-transform: uppercase; opacity: 0.9; }
.terugbel-item-date-time { font-size: 11px; margin-top: 4px; background: rgba(255,255,255,0.2); border-radius: 3px; padding: 1px 4px; }
.terugbel-item-body { flex: 1; min-width: 0; }
.terugbel-item-bedrijf { font-weight: 600; font-size: 14px; color: #2d3748; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.terugbel-item-details { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.terugbel-item-detail { display: flex; align-items: center; gap: 4px; font-size: 12px; color: #718096; }
.terugbel-item-detail i { font-size: 11px; color: #a0aec0; }
.terugbel-item-payroll { font-size: 11px; font-weight: 600; padding: 1px 8px; border-radius: 12px; }
.payroll-ja { background: #c6f6d5; color: #276749; }
.payroll-nee { background: #fed7d7; color: #c53030; }
.payroll-onbekend { background: #e2e8f0; color: #4a5568; }
.terugbel-item-notitie { font-size: 12px; color: #718096; margin-top: 4px; font-style: italic; display: flex; align-items: flex-start; gap: 4px; }
.terugbel-item-notitie i { margin-top: 2px; flex-shrink: 0; }
.terugbel-item-arrow { display: flex; align-items: center; color: #a0aec0; font-size: 12px; }

/* Klant section */
.klant-section-wrapper { background: white; border-radius: 0 12px 12px 12px; box-shadow: 0 4px 16px rgba(0,0,0,0.1); padding: 24px; margin-bottom: 4px; }
.klant-section { display: flex; flex-direction: column; gap: 20px; }
.klant-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 4px; }
.klant-header label { font-weight: 600; font-size: 15px; color: #4a5568; display: flex; align-items: center; gap: 8px; }
.klant-header label i { color: var(--brand-color); }
.pick-klant-btn { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; background: var(--brand-color); color: white; border: none; border-radius: 8px; cursor: pointer; font-size: 14px; font-weight: 600; transition: all 0.2s; }
.pick-klant-btn:hover:not(:disabled) { background: #e67e00; transform: translateY(-1px); }
.pick-klant-btn:disabled { background: #a0aec0; cursor: wait; }
.klant-loading, .klant-error { display: flex; align-items: center; gap: 10px; padding: 16px; border-radius: 8px; font-size: 14px; }
.klant-loading { background: #ebf8ff; color: #2b6cb0; }
.klant-error { background: #fff5f5; color: #c53030; }
.klant-spinner { width: 20px; height: 20px; border: 2px solid #bee3f8; border-top-color: #2b6cb0; border-radius: 50%; animation: spin 0.8s linear infinite; flex-shrink: 0; }
.klant-card { background: #f7fafc; border: 1px solid #e2e8f0; border-radius: 10px; padding: 16px; transition: all 0.2s; }
.klant-card.editing { border-color: var(--brand-color); box-shadow: 0 0 0 3px rgba(255,140,0,0.1); }
.klant-card-header { display: flex; justify-content: flex-end; gap: 8px; margin-bottom: 12px; }
.klant-maps-btn, .klant-edit-btn { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 6px; border: none; cursor: pointer; font-size: 12px; font-weight: 600; transition: all 0.2s; }
.klant-maps-btn { background: #ebf8ff; color: #2b6cb0; }
.klant-maps-btn:hover { background: #bee3f8; }
.klant-edit-btn { background: #f0fff4; color: #276749; }
.klant-edit-btn:hover { background: #c6f6d5; }
.klant-detail { display: grid; grid-template-columns: 24px auto 1fr; align-items: center; gap: 8px; padding: 6px 0; border-bottom: 1px solid #e2e8f0; font-size: 14px; }
.klant-detail:last-child { border-bottom: none; }
.klant-detail i { color: var(--brand-color); font-size: 13px; text-align: center; }
.klant-label { color: #718096; font-weight: 500; white-space: nowrap; }
.klant-value { color: #2d3748; font-weight: 500; }
.klant-sector-badge { display: inline-block; background: #edf2f7; color: #4a5568; padding: 1px 10px; border-radius: 12px; font-size: 12px; }
.klant-phone-wrapper { display: flex; align-items: center; gap: 8px; }
.klant-phone-link { color: #2b6cb0; text-decoration: none; font-weight: 500; }
.klant-phone-link:hover { text-decoration: underline; }
.phone-copy-btn { background: none; border: 1px solid #e2e8f0; border-radius: 4px; cursor: pointer; padding: 2px 6px; color: #a0aec0; font-size: 12px; transition: all 0.2s; }
.phone-copy-btn:hover { color: var(--brand-color); border-color: var(--brand-color); }
.phone-copy-btn.copied { color: #48bb78; border-color: #48bb78; }
.klant-email-link { color: #2b6cb0; text-decoration: none; font-weight: 500; }
.klant-email-link:hover { text-decoration: underline; }
.klant-edit-input { width: 100%; padding: 6px 10px; border: 1.5px solid #e2e8f0; border-radius: 6px; font-size: 14px; transition: border-color 0.2s; grid-column: 3; }
.klant-edit-input:focus { outline: none; border-color: var(--brand-color); }
.klant-edit-actions { display: flex; gap: 8px; margin-top: 12px; }
.klant-save-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; background: #48bb78; color: white; border: none; border-radius: 6px; cursor: pointer; font-size: 13px; font-weight: 600; transition: all 0.2s; }
.klant-save-btn:hover:not(:disabled) { background: #38a169; }
.klant-save-btn:disabled { opacity: 0.7; cursor: wait; }
.klant-cancel-edit-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; background: #e2e8f0; color: #4a5568; border: none; border-radius: 6px; cursor: pointer; font-size: 13px; font-weight: 600; transition: all 0.2s; }
.klant-cancel-edit-btn:hover { background: #cbd5e0; }
.klant-edit-status { font-size: 13px; padding: 6px 12px; border-radius: 6px; margin-top: 8px; display: flex; align-items: center; gap: 6px; }
.klant-edit-status.success { background: #f0fff4; color: #276749; }
.klant-edit-status.error { background: #fff5f5; color: #c53030; }
.klant-edit-status.saving { background: #ebf8ff; color: #2b6cb0; }
.klant-notitie-section { }
.klant-notitie-group { display: flex; flex-direction: column; gap: 6px; }
.klant-notitie-group label { font-size: 13px; font-weight: 600; color: #718096; display: flex; align-items: center; gap: 6px; }
.klant-notitie-group label i { color: var(--brand-color); }
.klant-notitie-textarea { width: 100%; padding: 10px 12px; border: 1.5px solid #e2e8f0; border-radius: 8px; font-size: 14px; resize: vertical; font-family: inherit; transition: border-color 0.2s; }
.klant-notitie-textarea:focus { outline: none; border-color: var(--brand-color); }
.klant-empty { text-align: center; padding: 32px 20px; color: #a0aec0; }
.klant-empty i { font-size: 48px; margin-bottom: 16px; display: block; }
.klant-empty p { font-size: 15px; }

/* Belactie section */
.belactie-section { }
.belactie-section h4 { font-size: 14px; font-weight: 700; color: #4a5568; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.belactie-section h4 i { color: var(--brand-color); }
.belactie-buttons { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 8px; margin-bottom: 12px; }
.belactie-btn { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 14px 10px; border: 2px solid #e2e8f0; border-radius: 10px; background: white; cursor: pointer; font-size: 13px; font-weight: 600; color: #4a5568; transition: all 0.2s; }
.belactie-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.belactie-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.belactie-btn i { font-size: 22px; }
.belactie-geen-gehoor:hover:not(:disabled) { border-color: #90cdf4; background: #ebf8ff; color: #2b6cb0; }
.belactie-geen-gehoor:hover:not(:disabled) i { color: #2b6cb0; }
.belactie-geen-payroll:hover:not(:disabled) { border-color: #fbb6ce; background: #fff5f7; color: #97266d; }
.belactie-geen-payroll:hover:not(:disabled) i { color: #97266d; }
.belactie-terugbel:hover:not(:disabled), .belactie-terugbel.active-selected { border-color: #fbd38d; background: #fffaf0; color: #c05621; }
.belactie-terugbel:hover:not(:disabled) i, .belactie-terugbel.active-selected i { color: #c05621; }
.belactie-afspraak:hover:not(:disabled), .belactie-afspraak.active-selected { border-color: #9ae6b4; background: #f0fff4; color: #276749; }
.belactie-afspraak:hover:not(:disabled) i, .belactie-afspraak.active-selected i { color: #276749; }
.belactie-geen-interesse:hover:not(:disabled) { border-color: #feb2b2; background: #fff5f5; color: #c53030; }
.belactie-geen-interesse:hover:not(:disabled) i { color: #c53030; }
.belactie-btn.selected, .belactie-btn.active-selected { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.belactie-status { padding: 10px 14px; border-radius: 8px; font-size: 13px; display: flex; align-items: center; gap: 8px; }
.belactie-status-saving { background: #ebf8ff; color: #2b6cb0; }
.belactie-status-success { background: #f0fff4; color: #276749; }
.belactie-status-error { background: #fff5f5; color: #c53030; }

/* Notitie bevestiging */
.notitie-section { background: #fffbeb; border: 1.5px solid #f6e05e; border-radius: 10px; padding: 14px; margin-top: 8px; }
.notitie-header { display: flex; align-items: center; gap: 8px; font-weight: 600; color: #744210; margin-bottom: 12px; }
.notitie-header i { color: #d69e2e; }
.notitie-actions { display: flex; gap: 8px; }
.notitie-confirm-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px; background: #48bb78; color: white; border: none; border-radius: 6px; cursor: pointer; font-size: 13px; font-weight: 600; transition: all 0.2s; }
.notitie-confirm-btn:hover { background: #38a169; }
.notitie-cancel-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; background: #e2e8f0; color: #4a5568; border: none; border-radius: 6px; cursor: pointer; font-size: 13px; font-weight: 600; transition: all 0.2s; }
.notitie-cancel-btn:hover { background: #cbd5e0; }

/* Terugbel date picker */
.terugbel-section { background: #f7fafc; border: 1.5px solid #e2e8f0; border-radius: 10px; padding: 16px; margin-top: 8px; }
.terugbel-header { display: flex; align-items: center; gap: 8px; font-weight: 700; color: #2d3748; margin-bottom: 14px; font-size: 15px; }
.terugbel-header i { color: var(--brand-color); }
.terugbel-form { display: flex; flex-direction: column; gap: 12px; }
.terugbel-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 600px) { .terugbel-inputs { grid-template-columns: 1fr; } }
.terugbel-input-group { display: flex; flex-direction: column; gap: 6px; }
.terugbel-input-group label { font-size: 12px; font-weight: 600; color: #718096; display: flex; align-items: center; gap: 6px; }
.terugbel-input-group label i { color: var(--brand-color); }
.terugbel-date-input { padding: 8px 12px; border: 1.5px solid #e2e8f0; border-radius: 6px; font-size: 14px; font-family: inherit; transition: border-color 0.2s; }
.terugbel-date-input:focus { outline: none; border-color: var(--brand-color); }
.terugbel-tijd-toggle { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #718096; cursor: pointer; }
.terugbel-tijd-toggle input { accent-color: var(--brand-color); }
.terugbel-time-selects { display: flex; align-items: center; gap: 6px; margin-top: 6px; }
.terugbel-select { padding: 6px 10px; border: 1.5px solid #e2e8f0; border-radius: 6px; font-size: 13px; font-family: inherit; background: white; cursor: pointer; transition: border-color 0.2s; }
.terugbel-select:focus { outline: none; border-color: var(--brand-color); }
.terugbel-medewerker-select { width: 100%; }
.terugbel-time-sep { color: #718096; font-weight: 700; }
.terugbel-payroll-toggle { display: flex; gap: 6px; flex-wrap: wrap; }
.payroll-option { padding: 5px 12px; border: 1.5px solid #e2e8f0; border-radius: 20px; background: white; cursor: pointer; font-size: 12px; font-weight: 600; color: #4a5568; transition: all 0.2s; }
.payroll-option.selected { border-color: var(--brand-color); background: var(--brand-color); color: white; }
.payroll-option:hover:not(.selected) { border-color: #a0aec0; }
.terugbel-actions { display: flex; gap: 8px; }
.terugbel-confirm-btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 20px; background: var(--brand-color); color: white; border: none; border-radius: 6px; cursor: pointer; font-size: 13px; font-weight: 600; transition: all 0.2s; }
.terugbel-confirm-btn:hover:not(:disabled) { background: #e67e00; }
.terugbel-confirm-btn:disabled { background: #a0aec0; cursor: not-allowed; }
.terugbel-cancel-btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; background: #e2e8f0; color: #4a5568; border: none; border-radius: 6px; cursor: pointer; font-size: 13px; font-weight: 600; transition: all 0.2s; }
.terugbel-cancel-btn:hover { background: #cbd5e0; }

/* Afspraak search section */
.afspraak-search { border-radius: 0 12px 12px 12px; }
.afspraak-location-info { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: #ebf8ff; border-radius: 8px; color: #2b6cb0; font-size: 14px; margin-bottom: 4px; }
.afspraak-location-info i { color: var(--brand-color); }

/* Results filters */
.results-filters { display: flex; gap: 24px; flex-wrap: wrap; padding: 16px; background: #f7fafc; border-radius: 8px; margin-bottom: 20px; border: 1px solid #e2e8f0; }
.filter-group { display: flex; flex-direction: column; gap: 8px; }
.filter-label { font-size: 12px; font-weight: 700; color: #718096; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; gap: 6px; }
.filter-buttons { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-btn { padding: 4px 12px; border: 1.5px solid #e2e8f0; border-radius: 20px; background: white; cursor: pointer; font-size: 12px; font-weight: 500; color: #4a5568; transition: all 0.2s; display: inline-flex; align-items: center; gap: 4px; }
.filter-btn:hover { border-color: var(--brand-color); color: var(--brand-color); }
.filter-btn.active { border-color: var(--brand-color); background: var(--brand-color); color: white; }
.filter-btn small { opacity: 0.8; }
.no-filter-results { color: #718096; text-align: center; padding: 24px; font-style: italic; }

/* Slot clickable styling */
.slot-clickable { cursor: pointer; transition: all 0.2s; border-radius: 6px; }
.slot-clickable:hover { background: #ebf8ff !important; border-color: var(--brand-color) !important; transform: translateX(3px); }

/* Time slot */
.time-slot.slot-clickable { padding: 10px 14px; }

/* Afspraak modal */
.modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center; z-index: 9000; padding: 16px; }
.modal-content { background: white; border-radius: 16px; width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid #e2e8f0; }
.modal-header h2 { font-size: 18px; font-weight: 700; color: #2d3748; display: flex; align-items: center; gap: 10px; }
.modal-header h2 i { color: var(--brand-color); }
.modal-close-btn { background: none; border: none; cursor: pointer; color: #a0aec0; font-size: 18px; padding: 4px; transition: color 0.2s; }
.modal-close-btn:hover { color: #2d3748; }
.modal-body { padding: 20px 24px; display: flex; flex-direction: column; gap: 14px; }
.modal-field { display: flex; flex-direction: column; gap: 5px; }
.modal-field label { font-size: 12px; font-weight: 600; color: #718096; text-transform: uppercase; letter-spacing: 0.4px; display: flex; align-items: center; gap: 6px; }
.modal-field label i { color: var(--brand-color); }
.modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .modal-row { grid-template-columns: 1fr; } }
.modal-input { padding: 10px 12px; border: 1.5px solid #e2e8f0; border-radius: 8px; font-size: 14px; font-family: inherit; width: 100%; transition: border-color 0.2s; }
.modal-input:focus { outline: none; border-color: var(--brand-color); }
.modal-readonly { background: #f7fafc; color: #4a5568; }
.modal-textarea { resize: vertical; min-height: 100px; }
.modal-footer { padding: 16px 24px; border-top: 1px solid #e2e8f0; display: flex; gap: 10px; flex-wrap: wrap; }
.modal-submit-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 20px; background: var(--brand-color); color: white; border: none; border-radius: 8px; cursor: pointer; font-size: 14px; font-weight: 700; transition: all 0.2s; }
.modal-submit-btn:hover:not(:disabled) { background: #e67e00; transform: translateY(-1px); }
.modal-submit-btn:disabled { background: #a0aec0; cursor: wait; }
.modal-cancel-btn { padding: 12px 20px; background: #e2e8f0; color: #4a5568; border: none; border-radius: 8px; cursor: pointer; font-size: 14px; font-weight: 600; transition: all 0.2s; }
.modal-cancel-btn:hover { background: #cbd5e0; }
.modal-status { margin: 0 24px 16px; padding: 10px 14px; border-radius: 8px; font-size: 13px; display: flex; align-items: center; gap: 8px; }
.modal-status-saving { background: #ebf8ff; color: #2b6cb0; }
.modal-status-success { background: #f0fff4; color: #276749; }
.modal-status-error { background: #fff5f5; color: #c53030; }

/* Inactivity logout modal */
.inactivity-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.8); display: flex; align-items: center; justify-content: center; z-index: 9999; animation: fadeIn 0.3s ease; }
.inactivity-modal { background: white; border-radius: 16px; padding: 32px; max-width: 400px; width: 90%; box-shadow: 0 20px 60px rgba(0,0,0,0.3); animation: slideUp 0.3s ease; text-align: center; }
.inactivity-icon { font-size: 48px; margin-bottom: 16px; }
.inactivity-title { font-size: 24px; font-weight: 700; color: #2d3748; margin-bottom: 8px; }
.inactivity-text { font-size: 15px; color: #718096; margin-bottom: 16px; }
.inactivity-countdown { font-size: 48px; font-weight: 700; color: var(--brand-color); font-family: monospace; margin-bottom: 24px; }
.inactivity-btn { width: 100%; padding: 16px; background: var(--brand-color); color: white; border: none; border-radius: 12px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.2s; box-shadow: 0 4px 12px rgba(255,140,0,0.3); }
.inactivity-btn:hover { background: #e67e00; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(255,140,0,0.4); }

/* Fullscreen loading */
.fullscreen-loading { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.8); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 9999; color: white; gap: 16px; font-size: 20px; }
.fullscreen-loading-icon { font-size: 40px; }

/* Role guard */
.role-guard-loading { padding: 40px; text-align: center; min-height: 400px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 16px; color: #718096; }
.role-guard-denied { min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.role-guard-denied-card { padding: 40px; text-align: center; background: white; border-radius: 16px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); max-width: 500px; }
.role-guard-denied-icon { width: 80px; height: 80px; border-radius: 50%; background: #fff3cd; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.role-guard-denied-icon i { font-size: 40px; color: #856404; }
.role-guard-denied-card h2 { color: #856404; margin-bottom: 12px; font-size: 24px; }
.role-guard-denied-card p { color: #856404; margin-bottom: 24px; }

/* Login extras */
.login-back-link { color: #718096; font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.login-back-link:hover { color: var(--brand-color); }
.login-input-mfa { text-align: center; letter-spacing: 0.5em; font-size: 24px; font-weight: 700; font-family: monospace; }
.login-success-card { text-align: center; padding: 40px; }
.login-success-card h2 { color: #2d3748; margin-bottom: 10px; }
.login-success-card p { color: #718096; }

/* MFA Setup */
.mfa-setup-card { max-width: 500px !important; }
.mfa-intro { display: flex; flex-direction: column; gap: 16px; }
.mfa-intro-text { font-size: 15px; color: #4a5568; line-height: 1.6; }
.mfa-scan { display: flex; flex-direction: column; gap: 12px; }
.mfa-scan-instructions { font-size: 14px; color: #718096; }
.mfa-qr-wrapper { display: flex; justify-content: center; padding: 16px; background: #f7fafc; border-radius: 10px; border: 1px solid #e2e8f0; }
.mfa-qr-image { max-width: 200px; border-radius: 8px; }
.mfa-secret { display: flex; flex-direction: column; gap: 4px; padding: 12px; background: #f7fafc; border-radius: 8px; border: 1px solid #e2e8f0; }
.mfa-secret-label { font-size: 11px; font-weight: 600; color: #718096; text-transform: uppercase; }
.mfa-secret-code { font-family: monospace; font-size: 13px; color: #2d3748; word-break: break-all; }

/* Dashboard */
.manager-card { background: white; border-radius: 12px; padding: 20px; box-shadow: 0 2px 12px rgba(0,0,0,0.1); transition: all 0.2s ease; cursor: default; }
.manager-card-header { display: flex; align-items: center; gap: 14px; padding-bottom: 14px; margin-bottom: 14px; }
.manager-avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.manager-name { font-size: 18px; font-weight: 700; color: #2d3748; }
.manager-display-name { font-size: 13px; color: #718096; }
.manager-stats { display: flex; flex-direction: column; gap: 8px; }
.manager-stat { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; border-radius: 8px; }
.stat-value { font-size: 28px; font-weight: 700; }
.stat-icon { font-size: 22px; }
.dashboard-totals { }
.totals-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .totals-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .totals-grid { grid-template-columns: 1fr; } }
.total-card { padding: 20px; border-radius: 12px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.total-label { font-size: 13px; font-weight: 600; color: #718096; margin-bottom: 4px; }
.total-value { font-size: 36px; font-weight: 700; }

/* Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* No results */
.no-results { color: #718096; text-align: center; padding: 24px; font-style: italic; }
