@charset "UTF-8";
/* CSS Document */
/* notification.css */
/* Notification styles */
.notification {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background-color: #10b981;
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 50;
    opacity: 0;
    transform: translateY(-1rem);
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-align: left;
}

.notification.visible {
    opacity: 1;
    transform: translateY(0);
}

