/* Customize the SweetAlert2 buttons */
.swal2-popup .swal2-confirm {
    background-color: #337ab7;  /* Blue background */
    color: white;  /* Text color */
    border: none;  /* Remove border */
    font-size: 16px;
    padding: 0px 20px;
    border-radius: 5px;  /* Rounded corners */
    transition: background-color 0.3s ease;
}

.swal2-popup .swal2-confirm:hover {
    background-color: #285e8e;  /* Darker blue on hover */
}

.swal2-popup .swal2-cancel {
    background-color: #d9534f;  /* Red background */
    color: white;  /* Text color */
    border: none;  /* Remove border */
    font-size: 16px;
    padding: 0px 20px;
    border-radius: 5px;  /* Rounded corners */
    transition: background-color 0.3s ease;
}

.swal2-popup .swal2-cancel:hover {
    background-color: #c9302c;  /* Darker red on hover */
}

/* Customize the SweetAlert popup (background, border) */
.swal2-popup {
    background-color: #fefefe;  /* Light background */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Change the title and text style */
.swal2-popup .swal2-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.swal2-popup .swal2-html-container {
    font-size: 16px;
    color: #555;
}

.swal-wide {
    width: 60%;
    max-width: 80%;
}

.cart-exists { color: red; }
.cart-added { color: green; }