.lm-toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.lm-toast {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 250px;
    margin-bottom: 10px;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transform: translateX(120%);
    transition: transform 0.3s ease-in-out;
    background: white;
    opacity: 0;
}

.lm-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.lm-toast-message {
    margin-right: 10px;
    color: #333;
}

.lm-toast-close {
    cursor: pointer;
    font-size: 18px;
    color: #666;
}

/* Tipos de toast */
.lm-toast.success {
    border-left: 4px solid #46b450;
}

.lm-toast.error {
    border-left: 4px solid #dc3232;
}

.lm-toast.info {
    border-left: 4px solid #00a0d2;
}

/* Responsivo */
@media (max-width: 480px) {
    .lm-toast-container {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
    
    .lm-toast {
        width: auto;
        min-width: 0;
        margin-left: 10px;
        margin-right: 10px;
    }
}
