/* Custom styles for Investment Calculator */

/* Custom Range Slider Styling */
input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    cursor: pointer;
    background: #e2e8f0;
    border-radius: 3px;
}

input[type=range]::-webkit-slider-thumb {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #2563eb;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -9px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    border: 2px solid white;
}

/* Animations */
.step-content {
    transition: all 0.3s ease-in-out;
}

.step-hidden {
    display: none;
    opacity: 0;
    transform: translateX(20px);
}

.step-visible {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

/* Custom Utilities */
.tap-target {
    min-width: 44px;
    min-height: 44px;
}

/* Color Tokens */
.bg-coral { background-color: #ff7f50; }
.text-coral { color: #ff7f50; }
.border-coral { border-color: #ff7f50; }

.bg-amber { background-color: #ffbf00; }
.text-amber { color: #ffbf00; }
.border-amber { border-color: #ffbf00; }

.bg-success-green { background-color: #22c55e; }
.text-success-green { color: #22c55e; }
.border-success-green { border-color: #22c55e; }

.bg-tax-blue { background-color: #3b82f6; }
.text-tax-blue { color: #3b82f6; }
.border-tax-blue { border-color: #3b82f6; }
