/* Connection Status */
.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #ccc;
    border: 2px solid #fff;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.status-dot.connected {
    background-color: #2ecc71 !important;
    /* Green */
    box-shadow: 0 0 5px #2ecc71 !important;
}

.status-dot.disconnected {
    background-color: #e74c3c;
    /* Red */
}

/* DJ Status Bar */
.dj-status-bar {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: white;
    font-family: 'Outfit', sans-serif;
}

.dj-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

#current-dj-name {
    font-weight: 500;
    color: #a8a8a8;
}

#current-dj-name.is-me {
    color: #FFE66D;
    /* Accent color */
    font-weight: 700;
}

.dj-timer {
    font-family: monospace;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    color: #FF6B6B;
}

.queue-pos {
    font-size: 0.9rem;
    color: #aaa;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.85rem;
}

.hidden {
    display: none !important;
}

.dj-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dj-name-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 6px 10px;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    width: 120px;
    transition: all 0.2s;
}

.dj-name-input:focus {
    outline: none;
    border-color: #FFE66D;
    background: rgba(255, 255, 255, 0.2);
}

.dj-name-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}