/* Custom styles for SweetAlert2 modals */

.swal2-popup .swal2-actions {
    gap: 10px;
}

.swal2-popup .swal2-actions .btn {
    margin: 0;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.swal2-popup .swal2-actions .btn-secondary {
    background-color: #6c757d;
    color: white;
}

.swal2-popup .swal2-actions .btn-secondary:hover {
    background-color: #5a6268;
    transform: translateY(-1px);
}

.swal2-popup .swal2-actions .btn--green {
    background-color: #28a745;
    color: white;
}

.swal2-popup .swal2-actions .btn--green:hover {
    background-color: #218838;
    transform: translateY(-1px);
}

.swal2-popup .swal2-actions .btn--red {
    background-color: #dc3545;
    color: white;
}

.swal2-popup .swal2-actions .btn--red:hover {
    background-color: #c82333;
    transform: translateY(-1px);
}

.swal2-popup {
    min-height: 200px;
    padding-bottom: 20px;
}

.swal2-popup .swal2-validation-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    padding: 8px 12px;
    margin: 10px 0;
    font-size: 13px;
    line-height: 1.4;
    max-width: 100%;
    word-wrap: break-word;
    box-sizing: border-box;
}

.swal2-popup .swal2-input {
    margin-bottom: 10px;
}

.swal2-popup .swal2-actions {
    margin-top: 20px;
}
