.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    font: 700 16px "Inter", sans-serif;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #fff;
    font-size: 16px;
    opacity: 1;
    animation: slideIn 0.5s forwards, fadeOut 0.5s 3s forwards;
}

.toast.success {
    background: #1b3e75;
}

.toast.error {
    background: #1b3e75;
}

.toast.info {
    background: #1b3e75;
}