/*!****************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./src/app/OtherPage/Cptocdes.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************************/
.cpt-container {
    background-color: #F4F7FC;
    min-height: 100vh;
    padding: 40px 16px;
}

.cpt-title {
    text-align: center;
    font-size: 45px;
    font-weight: bold;
    /* color: #00796B; */
    color: #111827;
    /* Dark Teal */
    margin-bottom: 25px;
}

.cpt-subtitle {
    text-align: center;
    color: #0CB8B6;
    /* Primary Teal */
    margin-bottom: 60px;
    font-size: 18px;
}

.cpt-table-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.cpt-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.cpt-table thead {
    background-color: #0CB8B6;
    /* Teal header */
    color: white;
    text-align: left;
}

.cpt-table th,
.cpt-table td {
    padding: 25px 13px;
    text-align: left;
}

.cpt-table td:first-child {
    width: 131px;
    padding-right: 30px;
}

.cpt-code {
    color: #004D40;
    /* Deep Teal for code */
    font-weight: bold;
}

.cpt-table thead th {
    font-size: 22px;
    font-weight: bold;
}

.cpt-table tbody td {
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.cpt-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.2s ease;
}

.cpt-table tbody tr:hover {
    background-color: #E0F2F1;
    /* Light teal hover */
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
    .cpt-title {
        font-size: 32px;
    }

    .cpt-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .cpt-table th,
    .cpt-table td {
        padding: 16px;
        font-size: 16px;
    }

    .cpt-table td:first-child {
        width: auto;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .cpt-title {
        font-size: 26px;
    }

    .cpt-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .cpt-table {
        font-size: 14px;
    }

    .cpt-table th,
    .cpt-table td {
        padding: 12px;
    }
}
