
.dsl-selector-wrapper {
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}
.dsl-selector-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.dsl-selector-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1e293b;
}
.dsl-selector-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background-color: #fff;
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
}
.dsl-selector-group select:focus {
    border-color: #2563eb;
    outline: none;
}
.dsl-selector-group select:disabled {
    background-color: #f1f5f9;
    cursor: not-allowed;
    opacity: 0.7;
}
.dsl-price-display {
    margin-top: 20px;
    padding: 12px 16px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dsl-price-label {
    font-weight: 600;
    color: #1e40af;
}
.dsl-price-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e3a8a;
}
