.custom-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 4px;
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}
.custom-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.custom-toast.success {
    background: linear-gradient(to right, #00b09b, #96c93d);
}

.custom-toast.error {
    background: linear-gradient(to right, #ff416c, #ff4b2b);
}