/* Toast Notification */
.toast-message {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 107, 107, 0.9);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    text-align: center;
    min-width: 300px;
}

.toast-message.show {
    opacity: 1;
    transform: translateX(-50%) translateY(20px);
}

body.en .toast-message {
    font-family: 'IM Fell English SC', 'Times New Roman', serif !important;
}