<style >
/* =========================
       NAV BUTTON DESIGN
    ========================== */
#pills-tab {
    gap: 12px;
    justify-content: center;
    border-bottom: none;
}

#pills-tab .nav-link {
    background: linear-gradient(135deg, #ffb347, #ff7a00);
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.35s ease;
    box-shadow: 0 4px 10px rgba(255,122,0,0.25);
}

    #pills-tab .nav-link:hover {
        background: linear-gradient(135deg, #ff8c00, #e65100);
        transform: translateY(-2px);
        color: #fff;
    }

    #pills-tab .nav-link.active {
        background: linear-gradient(135deg, #b71c1c, #ff6f00);
        color: #fff;
    }


/* =========================
       TABLE DESIGN
    ========================== */

.prdtable {
    margin-top: 20px;
}

.table-responsive {
    overflow-x: auto;
    border-radius: 14px;
}

.official-table {
    width: 100%;
    min-width: 1000px;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 14px;
    background: #fffaf5;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

    /* HEADER */

    .official-table thead tr {
        background: linear-gradient(135deg, #ff8c00, #d35400) !important;
    }

    .official-table thead th {
        background: transparent !important;
        color: #fff !important;
        padding: 15px 12px;
        text-align: center;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        border-right: 1px solid rgba(255,255,255,0.15);
        white-space: nowrap;
    }

        .official-table thead th:last-child {
            border-right: none;
        }

    /* BODY */

    .official-table tbody td {
        padding: 14px 12px;
        border: 1px solid #f3d7c0;
        font-size: 14px;
        color: #444;
        vertical-align: top;
        line-height: 1.7;
        background: #fff;
    }

    /* ALTERNATE ROW */

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

    /* HOVER */

    .official-table tbody tr:hover td {
        background: #ffe4c8;
        transition: 0.3s ease;
    }

    /* SL COLUMN */

    .official-table tbody td:first-child {
        text-align: center;
        font-weight: 700;
        color: #c0392b;
    }


/* =========================
       MOBILE RESPONSIVE
    ========================== */

@media(max-width:768px) {

    #pills-tab {
        gap: 8px;
    }

        #pills-tab .nav-link {
            padding: 10px 18px;
            font-size: 13px;
        }

    .official-table {
        min-width: 900px;
    }

        .official-table thead th {
            font-size: 12px;
            padding: 12px 10px;
        }

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

</style >
