/* Mobile Responsive Fix for .result-column-2 without horizontal scroll */
@media only screen and (max-width: 767px) {
    .result-column-2 {
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }

    .result-column-2 table {
        width: 100% !important;
        table-layout: fixed !important;
        /* Columns ko available width ke andar fit karega */
        margin-bottom: 40px !important;
    }

    .result-column-2 table th,
    .result-column-2 table td {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        /* Text wrap hoga, hide nahi hoga */
        padding: 8px 4px !important;
        font-size: 14px !important;
    }

    .result-column-2 h4 {
        margin-bottom: 15px !important;
    }
}

/* Final Mobile Fix for .result-column-2 (No Scroll, No Hidden Right Column) */
@media only screen and (max-width: 767px) {
    .result-column-2 {
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
        width: 100% !important;
        overflow: visible !important;
    }

    /* Parent wrappers me agar overflow hidden laga ho to remove */
    .result-column-2,
    .result-column-2 .table,
    .result-column-2 .table-responsive,
    .result-column-2 .inner-column {
        overflow: visible !important;
    }

    .result-column-2 .table {
        width: 100% !important;
        max-width: 100% !important;
        table-layout: auto !important;
        margin-bottom: 40px !important;
    }

    .result-column-2 .table th,
    .result-column-2 .table td {
        padding: 6px 3px !important;
        font-size: 10px !important;
        /* Font chhota karke sab columns fit honge */
        line-height: 1.3 !important;
        white-space: normal !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }

    .result-column-2 .table thead td,
    .result-column-2 .table thead th {
        font-size: 14px !important;
        /* Header aur chhota */
        /* padding: 6px 2px !important; */
    }

    /* Har column ki width percentage me set */
    .result-column-2 .table td:nth-child(1),
    .result-column-2 .table th:nth-child(1) {
        width: 10% !important;
        font-size: 14px !important;
    }

    .result-column-2 .table td:nth-child(2),
    .result-column-2 .table th:nth-child(2) {
        width: 15% !important;
        font-size: 14px !important;

    }

    .result-column-2 .table td:nth-child(3),
    .result-column-2 .table th:nth-child(3) {
        width: 25% !important;
        font-size: 14px !important;

    }

    .result-column-2 .table td:nth-child(4),
    .result-column-2 .table th:nth-child(4) {
        width: 25% !important;
        font-size: 14px !important;
    }

    .result-column-2 .table td:nth-child(5),
    .result-column-2 .table th:nth-child(5) {
        width: 25% !important;
        font-size: 14px !important;
    }
}