  /* Custom styles for SweetAlert buttons */
  .swal-confirm-button {
    background-color: #A62B27;
    /* Deep red for confirm button */
    color: #FAF9F6;
    /* Off-white text */
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.swal-confirm-button:hover {
    background-color: #8B0000;
    /* Dark red on hover */
}

.swal-cancel-button {
    background-color: #332D28;
    /* Dark gray for cancel button */
    color: #FAF9F6;
    /* Off-white text */
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.swal-cancel-button:hover {
    background-color: #1F1B1B;
    /* Darker gray on hover */
}