.planta-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 16px 32px;
    border-radius: 4px;
    font-family: 'Asap', sans-serif;
    font-size: 14px;
    z-index: 20000;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.planta-toast.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
