.toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 400px;
}

.toast {
    background: #fff;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: slideInDown 0.5s ease forwards;
    opacity: 0;
    transform: translateY(-100%);
}

.toast.success {
    border-right: 4px solid #4CAF50;
}

.toast.error {
    border-right: 4px solid #f44336;
}

.toast.warning {
    border-right: 4px solid #ff9800;
}

.toast-content {
    display: flex;
    align-items: center;
}

.toast-icon {
    margin-left: 12px;
    font-size: 20px;
}

.toast.success .toast-icon {
    color: #4CAF50;
}

.toast.error .toast-icon {
    color: #f44336;
}

.toast.warning .toast-icon {
    color: #ff9800;
}

.toast-message {
    color: #333;
    font-size: 14px;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
} 