.options-container {
    padding: 15px;
    border-radius: 8px;
    margin: 10px 0;
}

.options-section {
    margin-bottom: 20px;
}

.options-section h3 {
    color: #ddd;
    margin-bottom: 10px;
    font-size: 1.2em;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

.option-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.option-label {
    flex: 1;
    font-weight: 500;
}

.option-control {
    flex: 1;
}

select.option-select {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    font-size: 0.9em;
}

select.option-select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(230,0,18,0.1);
}

.option-checkbox {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

/* Dark theme support */
@media (prefers-color-scheme: dark) {
    .options-container {
        color: #ddd;
    }
    
    .option-row {
        background-color: #333;
    }
    
    select.option-select {
        background-color: #333;
        border-color: #444;
        color: #ddd;
    }
}
