/* Status Dropdown */
.status-dropdown {
    position: absolute;
    bottom: 80px; /* Position above the user profile area */
    left: 1rem;
    width: 200px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow: hidden;
    animation: fadeIn 0.2s ease-out;
}

.status-dropdown.hidden {
    display: none;
}

.status-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.2s;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.status-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.status-option .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Ensure status dots color match the main ones */
.status-dot.online { background: #4ade80; }
.status-dot.idle { background: #f59e0b; }
.status-dot.dnd { background: #ef4444; }
.status-dot.offline { background: #9ca3af; }
.status-dot.fuck-off { background: transparent; display: flex; align-items: center; justify-content: center; font-size: 1rem; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
