.basket {
    width: 80%;
    margin: 20px auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th,
td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

th {
    background-color: #f2f2f2;
}

.remove-btn {
    background-color: indianred;
    color: #fff;
    border: none;
    border-radius: 5px;
    /* Adjust the value for the desired level of rounding */
    padding: 5px 10px;
    cursor: pointer;
}


.checkout-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.message_box {
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 768px) {
    body {
        display: block;
    }

    .basket {
        width: 100%;
        margin: 20px 10px;
    }
}


.quantity-btn {
    background-color: #4CAF50;
    /* Green color, you can adjust */
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    margin: 0 5px;
    /* Adjust margin for spacing between buttons */
}

/* Add your existing CSS rules here */

/* Additional styling for centering and responsiveness */
.basket-container {
    max-width: 800px;
    margin: 0 auto;
}

.basket-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.basket-table th,
.basket-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.remove-btn {
    background-color: indianred;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
}


.quantity-btn-inc {
    background-color: #646e43;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    margin: 0 5px;
}

.quantity-btn-dec {
    background-color: indianred;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    margin: 0 5px;
}

.checkout-btn {
    color: #fff;
}


.quantity-controls {
    display: flex;
    align-items: center;
}

.quantity-btn {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
}

.quantity {
    margin: 0 5px;
}


.cen {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
    /* Adjust margin as needed */

    margin-left: 20%;
    margin-right: 20%;
}

.back-to-store-btn,
.checkout-btn {
    background-color: #646e43;
    color: #fff !important;
    border: none;
    border-radius: 5px;
    padding: 10% 20px;
    cursor: pointer;
    text-decoration: none;
    /* Add this line to remove underlines from anchor tags */
}

.back-to-store-btn a,
.checkout-btn a {
    text-decoration: none;
    color: white !important;

}


.empty-basket-message {
    background-color: #f8d7da;
    /* Light red background color */
    border: 1px solid #dc3545;
    /* Red border */
    color: #dc3545;
    /* Red text color */
    padding: 15px;
    /* Padding around the content */
    text-align: center;
    /* Center-align the text */
    border-radius: 5px;
    /* Rounded corners */
    margin: 20px 0;
    /* Margin for spacing */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* Box shadow for a subtle effect */
    font-size: 30px;
    font-weight: bolder;
}