/* common.css */

/* Wadah untuk semua notifikasi */
#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    width: 300px;
}

/* Tampilan dasar setiap kotak notifikasi */
.notification {
    color: white;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-left: 5px solid #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInFadeIn 0.5s forwards;
    font-family: sans-serif;
}

/* Varian Sukses dan Gagal */
.notification.success { background-color: #2E8B57; border-left-color: #32CD32; }
.notification.error { background-color: #8B0000; border-left-color: #DC143C; }

/* Animasi */
.notification.fade-out { animation: slideOutFadeOut 0.5s forwards; }
@keyframes slideInFadeIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideOutFadeOut { from { transform: translateX(0); opacity: 1; } to { transform: translateX(100%); opacity: 0; } }