.toast-container {
    position: fixed;
    top: 50px;
    right: 20px;
    z-index: 1000;
}

.toast {
    background-color: #2563eb;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-width: 300px;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.hide {
    opacity: 0;
    transform: translateY(-20px);
}

.toast-content {
    display: flex;
    align-items: center;
}

.toast-message {
    flex: 1;
    font-size: 0.9rem;
}