.broadcast-control-panel {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.broadcast-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
}

.status-indicator {
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    color: white;
}

.status-playing { background: #28a745; }
.status-paused { background: #ffc107; color: #212529 !important; }
.status-stopped { background: #dc3545; }

.connected-clients {
    background: #007bff;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
}

.broadcast-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.broadcast-controls .btn {
    flex: 1;
    min-width: 120px;
}

.broadcast-info {
    background: white;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #dee2e6;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item label {
    font-weight: bold;
    color: #495057;
}