.toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.toast {
    display: none;
    background-color: #333;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    transform: translateY(-100%);
    animation: slideIn 0.5s ease-in-out forwards;
}

.toast-content {
    display: flex;
    align-items: center;
}

.toast-icon {
    margin-right: 10px;
}

.success {
    background-color: red;
}

@keyframes slideIn {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}