﻿body {
}

/* Plan footer: price + buy button */
.plan-footer { 
    gap: 1rem; /* space between price and button */
}
.plan-price {
    font-weight: 500;
    color: #333;
}
.plan-buy {
    /* ensure consistent button height and padding */
    padding: .55rem 1.2rem;
    border-radius: 28px;
}

@media (max-width: 575.98px) {
    .plan-footer {
        justify-content: flex-start !important;
    }
    .plan-buy {
        margin-left: 0;
    }
}
