﻿.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    color: white;
    padding: 15px 25px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    cursor: pointer;
    max-width: 450px;
    display: flex;
    align-items: center;
    animation: slideIn 0.3s ease-out;
    font-family: Arial, sans-serif;
    font-size: 18px;
    transition: all 0.3s ease;
}

.toast-icon {
    font-weight: bold;
    margin-right: 12px;
    font-size: 18px;
}

.toast-message {
    flex: 1;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hover effect */
.toast-notification:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}
