/*!****************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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 17px;
    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;
    }
}
/*!***************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/pricing.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************************/
/* Section */
.pricing-section {
    padding: 4rem 0;
    background-color: #f4f7fc;
}

.pricing-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

/* Title + subtitle */
.pricing-title {
    font-size: 2rem;
    font-weight: bold;
    color: #111827;
    /* gray-900 */
}

.pricing-subtitle {
    margin-top: 0.75rem;
    color: #4b5563;
    text-align: center;
    /* gray-600 */
}

/* Toggle buttons */
.toggle-buttons {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.toggle-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    border: 1px solid #d1d5db;
    /* gray-300 */
    background: white;
    color: #374151;
    /* gray-700 */
    cursor: pointer;
    transition: 0.2s;
}

.toggle-btn:hover {
    background-color: #f3f4f6;
    /* hover gray */
}

.toggle-btn.active {
    background-color: #0D9488;
    /* teal-600 */
    color: white;
    border: none;
}

/* Grid Layout */
.pricing-grid {
    margin-top: 3rem;
    display:flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    grid-template-columns: repeat(1, minmax(300px, 1fr));
}

@media (min-width: 640px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(300px, 1fr));
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, minmax(300px, 1fr));
    }
}

/* Card */
.pricing-card {
    background: white;
    border: 1px solid #e5e7eb;
    /* gray-200 */
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    text-align: left;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    /* width: 31%; */
    width: 100%;
}
@media (min-width: 992px) {
    .pricing-card {
        width: 48%;
 
    }
}
@media (min-width: 1200px) {
  .pricing-card {
    width: 31%;
  }
}

.pricing-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Card content */
.plan-title {
    font-size: 1.25rem;
   font-weight: 600;
    color: #111827;
    text-align: center;
    /* gray-900 */
}

.plan-desc {
    margin-top: 0rem;
    color: #6b7280;
    text-align: center;
    font-size: 1.1rem;
    /* gray-500 */
}

.plan-price {
    /* margin-top: 1rem; */
    font-size: 1.75rem;
    font-weight: bold;
    color: #0D9488;
    text-align: center;
    /* teal-600 */
}

/* Features */
.plan-features {
    margin-top: 0.5rem;
    list-style: none;
    padding: 0;
    /* flex: 1; */
}

.plan-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    /* gray-700 */
    font-size: 1rem;
    margin-bottom: 0.55rem;
    /* padding-bottom: 50px; */
}

.check-icon {
    color: #0d9488;
    width: 1.25rem;
    height: 1.25rem;
}

/* Button */
.plan-btn {
    margin-top: auto;
    background-color: #0D9488;
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.plan-btn:hover {
    background-color: #0f766e;
    /* teal-700 */
}
