#notification {
    position: fixed;
    z-index: 9999;
    top: -100px;
    /* start off-screen */
    right: 16px;
    transition: top 0.5s ease;
    /* smooth transition for dropdown */
}

.notification-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(34, 197, 94, 0.8);
    border-radius: 8px;
    padding: 10px;
}

.notification-visible {
    top: 16px;
    /* dropdown to visible position */
}

.notification-icon {
    display: flex;
    align-items: right;
    justify-content: right;
    background-color: white;
    border-radius: 50%;
    padding: 5px;
    margin-right: 10px;
}

.notification-message {
    color: white;
}

.swal2-custom {
    background-color: transparent !important;
    /* Make Swal background transparent */
    /* Add any additional styling as needed */
}
