/*--------------------------------------------------------------
# Calculator Slider Styles
--------------------------------------------------------------*/

/* Range Container */
.calc-range-container {
    margin-bottom: 10px;
    margin-top: 15px;
}

/* Native Range Slider */
.calc-range {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right, #dee7f2, #e2e7ee);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: background 0.15s ease;
}

/* Webkit (Chrome, Safari, Edge) Slider Thumb */
.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f51f8a 0%, #d11873 100%);
    cursor: pointer;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 10px rgba(245, 31, 138, 0.4);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.calc-range::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(245, 31, 138, 0.5);
}

.calc-range::-webkit-slider-thumb:active {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(245, 31, 138, 0.6);
}

/* Firefox Slider Thumb */
.calc-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f51f8a 0%, #d11873 100%);
    cursor: pointer;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 10px rgba(245, 31, 138, 0.4);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.calc-range::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(245, 31, 138, 0.5);
}

/* Firefox Track */
.calc-range::-moz-range-track {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right, #dee7f2, #e2e7ee);
}

/* Range Labels */
.calc-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #778191;
    margin-top: 10px;
}

/* Amount Display */
.calc-amount-display {
    text-align: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #e7f1fd 0%, #f6f9fe 100%);
    border-radius: 8px;
    border: 1px solid #d0e3f7;
}

.calc-amount-display h3 {
    font-size: 28px;
    font-weight: 700;
    color: #15549a;
    margin: 0;
}

/* Disclaimer */
.calc-disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #666666;
    border-left: 3px solid #f51f8a;
}

.calc-disclaimer strong {
    color: #444444;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .calc-amount-display h3 {
        font-size: 24px;
    }
    
    .calc-range::-webkit-slider-thumb {
        width: 28px;
        height: 28px;
    }
    
    .calc-range::-moz-range-thumb {
        width: 24px;
        height: 24px;
    }
}

@media screen and (max-width: 480px) {
    .calc-amount-display h3 {
        font-size: 20px;
    }
    
    .calc-range-labels {
        font-size: 12px;
    }
}
