/* SIP Calculator-specific styles */

/* Range input styling */
.sip-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e5e7eb;
    outline: none;
}

.sip-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #002071;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.sip-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #002071;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* Print styles */
@media print {
    header, footer, .scroll-to-top, #toggleTableBtn, .bg-white > .bg-green-50,
    .bg-white > .bg-blue-50, nav, form button[type="button"] {
        display: none !important;
    }

    .bg-white {
        box-shadow: none !important;
        border: 1px solid #e5e7eb;
    }

    #resultsSection {
        display: block !important;
    }

    #yearTableWrapper {
        display: block !important;
    }

    #yearTable {
        font-size: 11px;
    }

    .container mx-auto px-4 py-10 {
        padding: 0;
    }
}