﻿.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 2rem;
}

.pricing-card {
    border-radius: 20px;
    transition: transform .25s ease, box-shadow .25s ease;
    cursor: default;
    padding: 30px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.price {
    font-size: 2.6rem;
    font-weight: 600;
    margin-top: 0.8rem;
}

.pricing-button {
    border-radius: 18px !important;
    padding: 10px 30px;
    font-weight: 600;
    display: block;
    margin-bottom: 0.7rem;
}

.pricing-button-disabled {
    cursor: default !important;
}

.billing-info-text{
    font-size:0.9rem;
    font-weight: bold;
    text-align: center;
}

.card-content .d-flex {
    display: flex;
    align-items: center;
}

.card-content .plan-title {
    flex-grow: 1;
}

.bottom-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.get-started-login{
    width: 100% !important;
}

@media (max-width: 1575px) {
    .bottom-section {
        min-height: 225px;
    }
}

@media (max-width: 320px) {
    .price {
        font-size: 1.6rem;
    }

    .mud-chip > .mud-chip-content {
        white-space: normal;
    }

    .mud-chip {
        padding: 24px 8px !important;
    }

    .pricing-card {
        padding: 15px;
    }
}