/* Access Denied Screen */
.access-denied {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    z-index: 10000;
}

.access-denied-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    max-width: 400px;
    margin: 20px;
}

.access-denied-card i {
    font-size: 64px;
    color: #ef4444;
    margin-bottom: 24px;
}

.access-denied-card h1 {
    font-size: 28px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 16px;
}

.access-denied-card p {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 12px;
    line-height: 1.6;
}

.access-denied-card p.small {
    font-size: 14px;
    color: #64748b;
}

.access-denied-card p.copyright {
    margin-top: 32px;
    font-size: 12px;
    color: #475569;
}

/* Role Indicator */
.role-indicator {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.role-indicator.admin {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #1a1a1a;
}

.role-indicator.client {
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

/* Waiting Spinner */
.waiting-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(245, 158, 11, 0.2);
    border-top-color: #f59e0b;
    border-radius: 50%;
    margin: 24px auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
