#global-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    padding: 15px;
    border-radius: 4px;
    display: none;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 12px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
}

.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border: 1px solid #b8daff;
}

.alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border: 1px solid #d6d8db;
}

.alert-dark {
    color: #fff;
    background-color: #343a40;
    border: 1px solid #6c757d;
}

/**
 * SweetAlert2 styling
 */
.custom-swal-popup {
    font-family: 'Poppins', sans-serif;
}

.custom-swal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.custom-swal-text {
    font-size: 1rem;
    color: #555;
}

.swal2-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    align-items: center;
}

.custom-swal-confirm-button, .custom-swal-cancel-button {
    background-color: #7C8189 !important;
    color: white !important;
    border: none !important;
    padding: 0.5rem 1rem !important;
    border-radius: 4px !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    transition: background-color 0.3s ease !important;
    flex: 1;
    max-width: 150px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}

.custom-swal-confirm-button:hover {
    background-color: black !important;
    color: white !important;
}

.custom-swal-cancel-button:hover {
    background-color: black !important;
    color: white !important;
}