.modal-content {
    border-radius: 20px;
    display: flex;
    position: fixed;
    left: 50%;
    top: 50%;
    width: 98%;
    padding: 3%;
    background-color: #ffffff;
    transform: translate(-50%, -50%); /* Adjusted transform */
    overflow-y: auto; /* Optional: for scrollable content */
    margin: 0 1% 0 1%
}

.modal-dialog {
    width: 98%; /* Adjust width as needed */
    margin: 0; /* Remove auto margin to allow custom positioning */
}

.bd_form_frame {
    ustify-content: center;
    width: 100%;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    margin: 0 0% 0 0%;

}

.bd_form_frame_sub
{
    text-align: center;
    width: 100%;
    margin: 0.5% 0% 0.5% 0%;
    padding: 1%;
    border-radius: 30px;
    background-color: #ffffff;
}

.bd_info_container {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Creates 4 equal columns */
    gap: 2%; /* Space between grid items */
    width: 100%;
    margin: 1%;
    padding:1%;
}
.bd_order_product_label {
    width: 100%;
    margin: 1%;
    padding:1%;
    font: 18px;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color:blue;
}

.bd_info_row {
    display: contents; /* Makes the container disappear, showing only its children */
    padding: 1%;
}

.bd_product_box
{
    background-color: #fff; /* Background color of the box */
    border: 1px solid #ddd; /* Border color */
    border-radius: 5px; /* Rounded corners */
    padding: 10px; /* Padding inside the box */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); /* Light shadow effect */
}


.bd_add_to_cart_button_container {
    text-align: center; /* Center the buttons horizontally */
    margin-top: 20px; /* Add spacing between the form and buttons */
    position: relative; /* Positioning */
    bottom: 0; /* Align to the bottom */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Center horizontally */
}

.bd_popup_close_button,
.bd_add_to_cart_button {
    font: 18px;
    background-color: #007bff; /* Blue background color */
    color: #fff; /* White text color */
    border: none; /* Remove button border */
    padding: 10px 20px; /* Add padding around the text */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Show pointer cursor on hover */
    margin-right: 10px; /* Add spacing between buttons */
}

.bd_popup_close_button:hover,
.bd_add_to_cart_button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}


.bd_product_deal_check 
{
    display: none;
}
.bd_list_price_strike {
    text-decoration-color:red;
    text-decoration-thickness:2px;
    text-decoration: line-through;
}
.bd_bundle_product_name,
.bd_bundle_price {
    color: blue;
    font-weight: bold;
}
