.subtotal, .total {
    margin-left: 10px; /* Adjust the spacing between text and prices */
}

.d-flex {
    margin-bottom: 10px; /* Adds spacing between each row */
}

hr {
    margin: 15px 0;
}

.fw-bold {
    font-weight: bold;
}
.error-message {
    margin-bottom: 0.5rem;
    color: red;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .order-summary {
        order: -1; /* Moves the "Order Summary" to the top */
    }

    .checkout-form {
        order: 0; /* Keeps the form below the summary */
    }
}
.modal {
        display: none;
        position: fixed;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgb(0,0,0);
        background-color: rgba(0,0,0,0.4);
        padding-top: 60px;
    }
    .modal-content {
        background-color: #fefefe;
        margin: 5% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 80%;
        max-width: 500px;
    }
    .close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
    }
    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }
    .modal-title {
        color: red;
        font-size: 24px;
        margin-bottom: 10px;
    }
