#toast-container {
    position: fixed;
    top: 85px; /* Di bawah topbar */
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.custom-toast {
    min-width: 300px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 15px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transform: translateX(120%);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 1px solid rgba(0,0,0,0.05);
}

.custom-toast.show { transform: translateX(0); }

.toast-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-right: 15px; flex-shrink: 0;
}

.toast-content { flex-grow: 1; }
.toast-title { font-weight: 800; font-size: 13px; color: #1e293b; margin: 0; }
.toast-msg { font-size: 12px; color: #64748b; margin: 0; line-height: 1.4; }

.toast-progress {
    position: absolute; bottom: 0; left: 0;
    height: 3px; width: 100%; background: rgba(0,0,0,0.03);
}
.toast-progress-bar { height: 100%; width: 100%; transition: width linear; }

.btn-close-toast {
    background: none; border: none; color: #94a3b8;
    font-size: 18px; cursor: pointer; padding: 0 5px;
}