﻿.custom-alert {
    padding: 15px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 300px;
    max-width: 400px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

    .custom-alert p {
        margin: 0;
        padding: 0;
    }

    .custom-alert.success-alert {
        background-color: #4CAF50;
    }

    .custom-alert.error-alert {
        background-color: #f44336;
    }

.close-btn {
    margin-left: 10px;
    font-size: 18px;
    cursor: pointer;
}

/* Animation for showing the alert */
.show-alert {
    opacity: 1;
    visibility: visible;
}
