/* CSS for the popup */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    margin: 10% auto;
    width: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.proceed-to-checkout-button {
    background-color: #0073e6;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 10px;
}

.close-popup-button {
    background-color: #ccc;
    color: #000;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 10px;
}

.reorder-button {
	display: inline-block;
    padding: 10px 20px;
    background-color: #0073e6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}


.reorder-button:hover {
	background-color: #0057b0;
}

.delete-order-btn {
    background-color: #921a23;
}