.toast-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.toast {
    background: #333;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast i {
    margin-right: 10px;
    font-size: 18px;
}

.toast.success { background: #64bc36; }
.toast.error { background: #e74c3c; }
.toast.info { background: #3498db; }
