/* Responsive Fix - Sirf ye add karein */
@media screen and (max-width: 768px) {
    /* Container ko screen ke bilkul fit kar dega */
    .main-container {
        padding-left: 10px !important;
        padding-right: 10px !important;
        width: 100% !important;
    }

    /* Boxes ko mobile par ek ke neeche ek (stack) kar dega */
    .row-container {
        display: block !important; 
        width: 100% !important;
    }

    .calc-box, .res-box {
        width: 100% !important;
        margin-bottom: 15px !important;
        min-width: unset !important;
    }

    /* Input grid ko mobile par sahi karega */
    .grid-inputs {
        grid-template-columns: 1fr 1fr !important;
    }

    /* Table ko scrollable banayega */
    .table-wrapper {
        width: 100% !important;
        overflow-x: auto !important;
    }
}