/* Styles pour les options de la sidebar */
.options-container {
    color: #eee;
}

.option-group {
    margin-bottom: 20px;
    background-color: #1a1a1a;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.option-group h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--primary-color);
    border-bottom: 1px solid #333;
    padding-bottom: 8px;
}

.option-group label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.option-group label span {
    font-size: 14px;
    color: #ccc;
}

/* Style pour les select */
.option-group select {
    background-color: #2a2a2a;
    color: white;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 14px;
    min-width: 120px;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
}

.option-group select:hover {
    background-color: #333;
    border-color: var(--primary-color);
}

.option-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.3);
}

/* Style custom pour les checkbox */
.option-group input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 44px;
    height: 22px;
    background-color: #333;
    border-radius: 22px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-group input[type="checkbox"]::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #777;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
}

.option-group input[type="checkbox"]:checked {
    background-color: var(--primary-color);
}

.option-group input[type="checkbox"]:checked::before {
    background-color: white;
    left: calc(100% - 20px);
}

.option-group input[type="checkbox"]:focus {
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.3);
    outline: none;
}

/* Style pour les button dans les options */
.option-group button {
    background-color: #2a2a2a;
    color: white;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 8px 15px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.option-group button:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.option-group button:active {
    transform: translateY(1px);
}

/* Pour les futures options, on prévoit des styles pour d'autres types d'inputs */
.option-group input[type="range"] {
    width: 100%;
    max-width: 200px;
    background: #333;
    height: 5px;
    border-radius: 5px;
    -webkit-appearance: none;
}

.option-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
}

.option-group input[type="text"], 
.option-group input[type="number"] {
    background-color: #2a2a2a;
    color: white;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
}

.option-group input[type="text"]:focus,
.option-group input[type="number"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.3);
}