/*
    ============================================================================
    ABD LUXURY SYSTEM | PROFILE COMPONENT
    ============================================================================
*/

.executive-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.executive-profile:hover {
    background: rgba(255, 255, 255, 0.05);
}

.profile-info {
    flex-direction: column;
}

.profile-name {
    font-size: 0.75rem;
    font-weight: 800;
    color: white;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.profile-role {
    font-size: 0.6rem;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.8;
}

.avatar-container {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
}

.avatar-frame {
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: #111;
}

.status-indicator {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background: #10b981;
    border: 2px solid black;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}
