.toast-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.toast {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #374151;
    padding: 12px 24px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    margin-bottom: 10px;
    width: 100%;
    animation: slideUp 0.3s ease-in-out;
    text-align: center;
}

.toast.success {
    border-left: 4px solid #10B981;
    background-color: #F0FDF4;
}

.toast.error {
    border-left: 4px solid #EF4444;
    background-color: #FEF2F2;
}

.toast.info {
    border-left: 4px solid #3B82F6;
    background-color: #EFF6FF;
}

.toast i {
    margin-right: 12px;
    font-size: 1.2em;
}

.toast.success i {
    color: #10B981;
}

.toast.error i {
    color: #EF4444;
}

.toast.info i {
    color: #3B82F6;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
} 