.btn-buy {
    display: inline-block;
    padding: 8px 20px 10px 20px;
    border-radius: 50px;
    color: rgb(148, 111, 68);
    transition: none;
    font-size: 16px;
    font-weight: 400;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid rgb(148, 111, 68);
}

#loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1050;
}

.table-header {
    font-weight: bold;
    color: #212529;
    font-size: 1.5rem;
}

.credit-card-tittle {
    color: rgb(21, 21, 21);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.75rem;
    cursor: pointer;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 2rem;
}

.btn-now, .edit-cart {
    margin: 0 10px;
}

.quantity {
    margin-left: 10px;
    padding: 5px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.pricing .box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.btn-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
}

.btn-now {
    display: inline-block;
    padding: 8px 20px 10px 20px;
    border-radius: 50px;
    color: #fff;
    transition: none;
    font-size: 16px;
    font-weight: 400;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid rgb(148, 111, 68);
    background: rgb(148, 111, 68);
}

.btn-now:hover {
    color: rgb(148, 111, 68);
    text-decoration: none;
    background: #F0F0F0;
}

h2 {
    margin-bottom: 2rem !important;
}

.box-content {
    flex-grow: 1;
}

.price-range {
    margin-bottom: 1rem;
}

.price-range {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    text-align: left;
}

.radio-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 20px;
    user-select: none;
    font-weight: 700;
    color: rgb(21, 21, 21);
    justify-content: space-between;
}

.radio-container small {
    font-size: 14px;
}

.radio-container input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

.radio-container input:checked~.checkmark {
    background-color: #2196F3;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-container input:checked~.checkmark:after {
    display: block;
}

.checkmark:after {
    top: 9px;
    left: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: white;
}

.radio-container .qty-container {
    display: flex;
    align-items: center;
}

.radio-container .qty-container span {
    margin-right: 5px;
    font-size: 16px;
    font-weight: 400;
}

.radio-container select {
    margin-left: 10px;
    padding: 5px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.radio-container input[type="number"] {
    display: none;
    margin-left: 10px;
    width: 60px;
    padding: 5px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}
/* Card styles similar to selectPlan.html */
.box {
    padding: 15px;
    margin: 5px 0;
    background: #fff;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
}

.box:hover {
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.2);
}

.box .table-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: rgb(21, 21, 21);
}

.button-container {
    text-align: center;
    margin-top: 20px;
}
.flex-container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.flex-container-logged {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.flex-container .box {
    flex: 1;
    margin: 5px;
}
.disabled {
    pointer-events: none;
    opacity: 0.5;
}
