/* sliders.css - Slider control styles */
/* Range input sliders for scoring and trade plan parameters */

.slider-group {
    margin-bottom: 14px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}

.slider-label {
    flex: 1;
}

.slider-title {
    font-weight: 600;
    color: #e0e0e0;
    font-size: 13px;
    margin-bottom: 0;
}

.slider-subtitle {
    font-size: 9px;
    color: #888;
    display: none;
}

.slider-value {
    font-size: 16px;
    font-weight: 700;
    color: #cc0000;
    min-width: 32px;
    text-align: right;
}

.slider {
    width: 100%;
    height: 6px;
    border-radius: 6px;
    background: #1a1a1a;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #cc0000 0%, #ff3333 100%);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(204, 0, 0, 0.4);
}

.slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #cc0000 0%, #ff3333 100%);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(204, 0, 0, 0.4);
}

.slider-range {
    display: none;
}

/* Stop Loss specific slider styling */
#stopLoss-slider::-webkit-slider-thumb {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%) !important;
    box-shadow: 0 2px 6px rgba(255, 68, 68, 0.4) !important;
}

#profitTarget-slider::-webkit-slider-thumb {
    background: linear-gradient(135deg, #00ff00 0%, #00aa00 100%) !important;
    box-shadow: 0 2px 6px rgba(0, 255, 0, 0.4) !important;
}

#stopLoss-slider::-moz-range-thumb {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%) !important;
    box-shadow: 0 2px 6px rgba(255, 68, 68, 0.4) !important;
}

#profitTarget-slider::-moz-range-thumb {
    background: linear-gradient(135deg, #00ff00 0%, #00aa00 100%) !important;
    box-shadow: 0 2px 6px rgba(0, 255, 0, 0.4) !important;
}
