/* Notifications styling for Management System */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 350px;
}

.notification {
    margin-bottom: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.notification.show {
    opacity: 1;
}

.notification.fade-out {
    opacity: 0;
}

/* Animation for notifications */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification.animate {
    animation: slideInRight 0.2s forwards;
}

/* Notification types */
.notification-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.notification-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.notification-warning {
    background-color: #fff3cd;
    border-color: #ffeeba;
    color: #856404;
}

.notification-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}
