/* Additional UI improvements */

/* Controls section styling */
.controls-section {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.controls-section select {
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 26, 0.3);
    transition: all 0.3s ease;
}

.controls-section select:hover {
    border-color: rgba(255, 107, 26, 0.5);
}

/* Live mode header improvements */
.live-mode-header {
    background: rgba(255, 107, 26, 0.05);
    padding: 1rem;
    margin: -1.25rem -1.75rem 1rem -1.75rem;
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid rgba(255, 107, 26, 0.2);
}

/* Improved spacing for form labels */
.form-check-label {
    color: #ccc;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
}

.form-check-input {
    cursor: pointer;
}

/* Smooth transitions */
* {
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

button, a, input, select {
    transition: all 0.3s ease !important;
}
