/* Toast message (global component) */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #27ae60;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s;
    z-index: 10000;
    max-width: 400px;
    pointer-events: none;
    font-size: 15px;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}