/* Toast Notification - Simple & Elegant */
.toast-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #4a90e2;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    font-weight: 500;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    max-width: 300px;
    word-wrap: break-word;
}

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

.toast-notification.success {
    background: #4caf50;
}

.toast-notification.error {
    background: #f44336;
}

.toast-notification .toast-icon {
    font-size: 18px;
    line-height: 1;
}

.toast-notification .toast-message {
    flex: 1;
}

/* Mobile optimizations */
@media (max-width: 767px) {
    .toast-notification {
        bottom: 15px;
        right: 15px;
        left: 15px;
        max-width: none;
        padding: 14px 18px;
        font-size: 15px;
    }
}

/* Animation for appearing */
@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.toast-notification.show {
    animation: toastSlideIn 0.3s ease;
}

/* Accessibility */
.toast-notification:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

