.credit-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}
@media screen and (max-width: 950px) {
    .credit-cards {
        flex-direction: column;
    }
}

.credit-card {
    flex: 1;
    background-color: whitesmoke;
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--bs-light);
    text-align: center;
    margin-top: 1rem;
}

.paid-credits {
    border-left: 5px solid #0B4C79FF;
}

.complimentary-credits {
    border-left: 5px solid #0B4C79FF;
}

.credit-card h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

.credit-amount .number {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
}

.credit-amount .label {
    font-size: 0.9rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.next-update {
    font-size: 0.9rem;
    margin-top: 15px;
    opacity: 0.8;
}

.reset-date {
    font-weight: bold;
    color: #0B4C79FF;
}

.credit-history,
.pricing-table,
.credit-form {
    background-color: whitesmoke;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--bs-light);
    border-left: 5px solid #0B4C79FF;

}

.credit-history h2 {
    margin-top: 0;
    border-bottom: 2px solid #0B4C79FF;
    padding-bottom: 10px;
}

/* Buy Credits Page */
.credit-total {
    font-weight: 800;
    color: #0B4C79FF;
}


.buy-credits-cta {
    display: flex;
    gap: 1rem;
}
.buy-credits-cta button {
    background: #0B4C79FF;
}

.buy-credits-cta input {
    width: 100px;
}

.buy-credits-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}