/* main.css */

/* Custom SweetAlert Button Styling */
.swal2-confirm-custom {
    background-color: #1d4ed8; /* Match the color of the Edit button */
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.375rem; /* Rounded corners similar to your buttons */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: add some shadow for depth */
    transition: background-color 0.3s ease; /* Smooth transition */
}

.swal2-confirm-custom:hover {
    background-color: #1e40af; /* Darken on hover */
}

.swal2-cancel-custom {
    background-color: #e11d48; /* Match the color of the Delete button */
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.375rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.swal2-cancel-custom:hover {
    background-color: #be123c; /* Darken on hover */
}
