/* Pricing Page Specific Styles */
.price-pg-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.new-price-card {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,.05);
    transition: all 0.3s ease;
    background-color: #fff;
    height: 100%;
}

.new-price-card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,.1);
}

.current-price .title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
}

.current-price .sub {
    font-size: 1rem;
    font-weight: normal;
    color: #777;
    display: block;
}

.current-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.offer-tag {
    border-radius: 5px;
    padding: 5px 15px;
    color: #fff;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.bg-tmLblue {
    background-color: #5bc0de;
}

.bg-tmBlue {
    background-color: var(--accent-color);
}

.bg-tmOrng {
    background-color: #fd7e14;
}

.discount {
    font-size: 1.2rem;
}

.discount small {
    font-size: 0.8rem;
}

.subscription .info {
    font-size: 0.9rem;
    color: #777;
    margin-top: 5px;
}

.text-tmLblue {
    color: #5bc0de !important;
}

.text-tmBlue {
    color: var(--accent-color) !important;
}

.text-tmOrng {
    color: #fd7e14 !important;
}

.offer-amount {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.offer-amount span {
    font-size: 1rem;
    font-weight: normal;
    color: #777;
    display: block;
}

.bg-tmBlueLight {
    background-color: #e0f7fa;
}

.off-info {
    display: flex;
    align-items: center;
}

.off-info .txt {
    font-size: 1.1rem;
    color: #333;
}

.off-info .txt span {
    display: block;
    font-size: 0.9rem;
    color: #777;
}

.price-table {
    border-collapse: separate;
    border-spacing: 0 10px;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    overflow: hidden;
}

.price-table thead tr {
    background-color: #f8f9fa;
}

.price-table th, .price-table td {
    padding: 15px;
    vertical-align: middle;
}

.price-table td.rounded-start-3 {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.price-table td.rounded-end-3 {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: #f2f2f2;
}

.table-striped > tbody > tr:nth-of-type(even) > * {
    background-color: #ffffff;
}

.btn-tmOrng {
    background-color: #fd7e14;
    color: #fff;
    border-color: #fd7e14;
}

.btn-tmOrng:hover {
    background-color: #e66a00;
    border-color: #e66a00;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .current-price .title {
        font-size: 1.5rem;
    }

    .current-price .amount {
        font-size: 2.5rem;
    }

    .offer-amount {
        font-size: 1.2rem;
    }

    .off-info {
        margin-bottom: 1rem;
    }
}
