/* SweetAlert Custom Styles for DryWhite */

/* SweetAlert Button Styles */
.swal2-actions {
    gap: 10px;
}

.swal2-styled.btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
}

.swal2-styled.btn-danger {
    background-color: #dc3545;
    color: white;
}

.swal2-styled.btn-danger:hover {
    background-color: #c82333;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

.swal2-styled.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.swal2-styled.btn-secondary:hover {
    background-color: #5a6268;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(108, 117, 125, 0.3);
}

.swal2-styled:focus {
    box-shadow: none;
}

/* SweetAlert Modal Animation */
.swal2-popup {
    border-radius: 12px;
    padding: 30px;
}

.swal2-title {
    font-size: 24px;
    font-weight: 700;
    color: #0d2b3e;
    margin-bottom: 15px;
}

.swal2-html-container {
    font-size: 15px;
    line-height: 1.6;
    color: #6c757d;
}

.swal2-icon {
    margin: 20px auto;
}

/* Remove default button styling */
.swal2-actions .swal2-styled:not(.btn) {
    padding: 10px 24px;
}

