.alerta-lateral {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border-left: 5px solid #2196F3;
    display: none;
    animation: slideIn 0.4s ease-out;
}

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

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

.alerta-header {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #2196F3;
}

    .alerta-header .material-icons {
        margin-right: 5px;
    }

.alerta-body {
    margin-top: 8px;
}

.alerta-footer {
    margin-top: 10px;
    text-align: right;
    font-size: 12px;
    color: #999;
}


