.toast-container {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.toast-message {
    background: #ff4444;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.toast-message.visible {
    opacity: 1;
    transform: translateY(0);
}

.toast-message.success {
    background: #00C851;
}