
    .comparison-table-wrapper {
        margin: 35px 0;
        border-radius: 18px;
        overflow: hidden;
        border: 1px solid #dfe7ef;
        background: #ffffff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .comparison-table {
        margin-bottom: 0;
        min-width: 1200px;
        border-collapse: separate;
        border-spacing: 0;
    }

    .comparison-table thead th {
        background: linear-gradient(135deg, #0c3c63, #133f74);
        color: #fff;
        font-size: 15px;
        font-weight: 700;
        text-align: center;
        vertical-align: middle;
        padding: 18px 14px;
        border: 1px solid #214b7a;
        white-space: nowrap;
    }

    .comparison-table tbody td {
        padding: 15px 14px;
        font-size: 14px;
        line-height: 1.7;
        vertical-align: top;
        border: 1px solid #edf2f7;
        background: #fff;
    }

    .comparison-table tbody tr:nth-child(even) td {
        background: #f8fbff;
    }

    .comparison-table .parameter {
        font-weight: 700;
        background: #eef5fb !important;
        min-width: 120px;
        color: #0c3c63;
    }



    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    @media(max-width:768px) {

        .comparison-table {
            min-width: 1000px;
        }

        .comparison-table thead th {
            font-size: 13px;
            padding: 13px 10px;
        }

        .comparison-table tbody td {
            font-size: 13px;
            padding: 12px 10px;
        }
    }

    /* =========================
       DARK MODE
    ========================= */

    body.dark-mode .comparison-table-wrapper {
        background: #111827;
        border-color: #374151;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    }

    body.dark-mode .comparison-table thead th {
        background: linear-gradient(135deg, #102a43, #1e3a5f);
        border-color: #2f4f75;
        color: #ffffff;
    }

    body.dark-mode .comparison-table tbody td {
        background: #1f2937;
        border-color: #374151;
        color: #f3f4f6;
    }

    body.dark-mode .comparison-table tbody tr:nth-child(even) td {
        background: #243244;
    }

    body.dark-mode .comparison-table .parameter {
        background: #102a43 !important;
        color: #ffffff !important;
    }

    body.dark-mode .green-cell {
        background: rgba(34, 197, 94, 0.18) !important;
        color: #86efac !important;
        border-color: rgba(34, 197, 94, 0.35) !important;
    }

    body.dark-mode .red-cell {
        background: rgba(239, 68, 68, 0.16) !important;
        color: #fca5a5 !important;
        border-color: rgba(239, 68, 68, 0.3) !important;
    }

    body.dark-mode .orange-cell {
        background: rgba(245, 158, 11, 0.18) !important;
        color: #fcd34d !important;
        border-color: rgba(245, 158, 11, 0.3) !important;
    }
    