/* Toaster container */
#custom-toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

/* Toast message */
.custom-toast {
    min-width: 220px;
    padding: 12px 16px;
    border-radius: 6px;
    color: white;
    font-size: 14px;
    animation: slideLeft 0.4s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    opacity: 0.95;
}

/* Success + Error Colors */
.custom-toast.success { background-color: #28a745; }
.custom-toast.error { background-color: #dc3545; }

/* Slide-in animation */
@keyframes slideLeft {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
